/**
* Template Name: Strada
* Template URL: https://bootstrapmade.com/strada-bootstrap-agency-template/
* Updated: Apr 01 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

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

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #322f2d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4a4643;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f3f3f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 13px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 0;
  transition: 0.3s;
}

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

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

  .header .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0.1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #f3f3f3;
  --default-color: #444444;
  --heading-color: #282828;
  --nav-color: #5b5b5b;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--nav-dropdown-hover-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer .footer-main {
  margin-bottom: 80px;
}

.footer .brand-section .logo {
  text-decoration: none;
}

.footer .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer .nav-column {
  margin-bottom: 40px;
}

.footer .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

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

.footer .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

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

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.footer .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 0 0;
  }

  .footer .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer .brand-section .brand-description {
    max-width: none;
  }

  .footer .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer .footer-social {
    text-align: center;
  }

  .footer .footer-social .newsletter-section p {
    max-width: none;
  }

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

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .legal-links {
    justify-content: center;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}

.section-title p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

.hero .swiper-wrapper {
  height: auto !important;
}

.hero .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 600px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

  .hero .content-inner p {
    font-size: 16px;
  }

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

  .hero .content-inner {
    max-width: 100%;
  }

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    min-height: 460px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .content-block {
  padding-right: 24px;
}

.about .content-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about .content-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
}

.about .stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .stat-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about .stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.about .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .stat-divider {
  width: 1px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.about .cta-link:hover {
  gap: 14px;
  color: var(--accent-color);
}

.about .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about .cta-link:hover i {
  transform: translateX(4px);
}

.about .image-block {
  height: 100%;
}

.about .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about .features-block {
  padding-left: 16px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .feature-entry {
  margin-bottom: 40px;
}

.about .feature-entry i {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: block;
}

.about .feature-entry h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .feature-entry p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .minimal-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.about .minimal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .minimal-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about .content-block {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .about .features-block {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .about .image-block img {
    max-height: 420px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 64px 0;
  }

  .about .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .intro-block {
  padding-bottom: 24px;
}

.services .intro-block .label-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.services .intro-block h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .services .intro-block h2 {
    font-size: 28px;
  }
}

.services .intro-block p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .intro-block .btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
}

.services .intro-block .btn-outline-cta:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .cards-slider .swiper-wrapper {
  height: auto !important;
}

.services .item-card {
  padding: 48px 36px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.services .item-card .step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.services .item-card .icon-wrap {
  margin-bottom: 28px;
}

.services .item-card .icon-wrap i {
  font-size: 28px;
  color: var(--accent-color);
}

.services .item-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services .item-card h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services .item-card p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .item-card .read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.3s;
}

.services .item-card .read-link:hover {
  gap: 10px;
}

.services .item-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.services .item-card:hover h4 a {
  color: var(--accent-color);
}

.services .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.services .slider-controls .divider-line {
  width: 48px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  background: transparent;
  color: var(--default-color);
  font-size: 18px;
  transition: border-color 0.3s, color 0.3s;
}

.services .slider-controls button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

.call-to-action .cta-header {
  margin-bottom: 64px;
}

.call-to-action .cta-header .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action .cta-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .call-to-action .cta-header h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .cta-header .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  max-width: 560px;
  margin: 0 auto;
}

.call-to-action .highlights {
  margin-bottom: 64px;
}

.call-to-action .highlights .highlight-card {
  padding: 32px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  transition: border-color 0.3s ease;
}

.call-to-action .highlights .highlight-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .highlights .highlight-card i {
  display: block;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.call-to-action .highlights .highlight-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 576px) {
  .call-to-action .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .cta-actions .btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.call-to-action .cta-actions .btn.btn-ghost {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-ghost:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-actions .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-solid:hover {
  opacity: 0.85;
}

.call-to-action .social-proof .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.call-to-action .social-proof .stars i {
  font-size: 14px;
  color: var(--accent-color);
}

.call-to-action .social-proof span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.features .feature-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .feature-item:hover i {
  color: var(--accent-color);
}

.features .feature-item i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.features .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.features .feature-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.7;
  margin-bottom: 0;
}

.features .highlight-block {
  padding: 32px 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  max-width: 780px;
  transition: border-color 0.3s ease;
}

.features .highlight-block:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .features .highlight-block {
    text-align: center;
  }

  .features .highlight-block .row {
    flex-direction: column;
    gap: 1rem;
  }
}

.features .highlight-block i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.features .highlight-block h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.features .highlight-block p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.features .cta-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 80px 0;
}

.clients .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  margin: -0.5px;
  transition: border-color 0.3s;
}

.clients .logo-item img {
  max-width: 120px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.clients .logo-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 576px) {
  .clients .logo-item {
    padding: 32px 20px;
  }

  .clients .logo-item img {
    max-width: 90px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 64px;
  padding: 0;
  list-style: none;
}

.portfolio .filter-bar li {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
}

.portfolio .filter-bar li:hover {
  color: var(--default-color);
}

.portfolio .filter-bar li.filter-active {
  color: var(--default-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .work-entry {
  margin-bottom: 16px;
}

.portfolio .work-entry .work-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 2px;
}

.portfolio .work-entry .work-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-thumb:hover img {
  opacity: 0.85;
}

.portfolio .work-entry .work-thumb:hover .work-actions {
  opacity: 1;
}

.portfolio .work-entry .work-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.portfolio .work-entry .work-meta .work-category {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio .work-entry .work-meta .work-divider {
  width: 12px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .work-entry .work-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio .work-entry .work-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-title a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
  padding: 12px 0;
  border-bottom: 2px solid var(--default-color);
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.portfolio .view-all-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease;
}

.portfolio .view-all-link:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .plan-card {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.pricing .plan-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing .plan-card.highlighted {
  border-top: 2px solid var(--accent-color);
}

.pricing .popular-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.pricing .plan-header {
  margin-bottom: 40px;
}

.pricing .plan-header .plan-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.pricing .plan-header .plan-price {
  font-size: 56px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing .plan-header .plan-price .currency {
  font-size: 24px;
  font-weight: 400;
  vertical-align: super;
}

.pricing .plan-header .plan-price .period {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .plan-header .plan-desc {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .plan-features {
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing .plan-features .feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.pricing .plan-features .feature-row:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.pricing .plan-features .feature-row i {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-btn {
  display: inline-block;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 2px;
  color: var(--default-color);
  background: transparent;
  transition: all 0.3s ease;
}

.pricing .plan-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.pricing .plan-btn.solid {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .plan-btn.solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 768px) {
  .pricing .plan-card {
    padding: 36px 28px;
  }

  .pricing .plan-header {
    margin-bottom: 32px;
  }

  .pricing .plan-header .plan-price {
    font-size: 44px;
  }

  .pricing .plan-header .plan-price .currency {
    font-size: 20px;
  }

  .pricing .plan-features {
    margin-bottom: 36px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .category-nav {
  position: sticky;
  top: 120px;
}

.faq .category-nav .nav {
  gap: 0;
}

.faq .category-nav .nav .nav-item .nav-link {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: none;
  border: none;
  border-left: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  text-align: left;
  padding-left: 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.faq .category-nav .nav .nav-item .nav-link:hover {
  color: var(--default-color);
}

.faq .category-nav .nav .nav-item .nav-link.active {
  color: var(--default-color);
  font-weight: 600;
  border-left-color: var(--accent-color);
  background: none;
}

@media (max-width: 992px) {
  .faq .category-nav {
    position: static;
    margin-bottom: 48px;
  }

  .faq .category-nav .nav {
    flex-direction: row !important;
    gap: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .faq .category-nav .nav .nav-item .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    text-align: center;
  }

  .faq .category-nav .nav .nav-item .nav-link.active {
    border-bottom-color: var(--accent-color);
    border-left: none;
  }
}

.faq .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
}

.faq .faq-list .faq-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
  padding-right: 16px;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  flex-shrink: 0;
}

.faq .faq-list .faq-item .faq-content {
  display: none;
  padding-bottom: 24px;
}

.faq .faq-list .faq-item .faq-content p {
  margin: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.faq .faq-list .faq-item .faq-content p+p {
  margin-top: 12px;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  padding: 64px 0 0;
}

.faq .faq-cta p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.faq .faq-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.faq .faq-cta .cta-link:hover {
  opacity: 0.7;
}

.faq .faq-cta .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq .faq-cta .cta-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 20px 0;
    font-size: 0.95rem;
  }

  .faq .faq-list .faq-item .faq-content {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  background: var(--surface-color);
  gap: 32px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.team .member-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .avatar-col {
  flex-shrink: 0;
}

.team .avatar-col img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.member-card:hover .team .avatar-col img {
  filter: grayscale(0%);
}

.team .info-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .info-col .role {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team .info-col p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .social-row {
  display: flex;
  gap: 16px;
}

.team .social-row a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
  transition: color 0.3s ease;
}

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

@media (max-width: 576px) {
  .team .member-card {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .team .social-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .info-row {
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item {
  text-align: center;
  padding: 32px 16px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 16px;
}

.contact .info-item h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .form-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.contact .form-wrapper>p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 480px;
}

.contact .php-email-form .form-group {
  margin-bottom: 24px;
}

.contact .php-email-form label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
}

.contact .php-email-form .form-control {
  height: auto;
  padding: 12px 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact .php-email-form .form-control:focus {
  background-color: transparent;
  border-color: var(--accent-color);
  box-shadow: none;
}

.contact .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .php-email-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 576px) {
  .contact .php-email-form .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .php-email-form button[type=submit] {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 10px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact .php-email-form button[type=submit]:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form .social-links {
  display: flex;
  gap: 16px;
}

.contact .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0;
  color: var(--default-color);
  font-size: 14px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact .php-email-form .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.contact .map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact .map-container iframe:hover {
  filter: grayscale(0%) contrast(1);
}

@media (max-width: 992px) {
  .contact .map-container {
    min-height: 300px;
  }

  .contact .map-container iframe {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .slider-area {
  margin-bottom: 64px;
}

.portfolio-details .slider-area .details-slider {
  overflow: hidden;
}

.portfolio-details .slider-area .details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .slider-area .details-slider .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portfolio-details .slider-area .details-slider .swiper-pagination {
  bottom: 16px;
}

.portfolio-details .slider-area .details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--default-color);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .portfolio-details .slider-area {
    margin-bottom: 48px;
  }

  .portfolio-details .slider-area .details-slider .swiper-slide img {
    height: 240px;
  }
}

.portfolio-details .meta-bar {
  padding: 32px 0;
  margin-bottom: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .meta-bar .meta-item .meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 4px;
}

.portfolio-details .meta-bar .meta-item .meta-value {
  display: block;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.portfolio-details .meta-bar .meta-item .meta-value a {
  color: var(--accent-color);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.portfolio-details .meta-bar .meta-item .meta-value a:hover {
  opacity: 0.7;
}

.portfolio-details .meta-bar .meta-item .meta-value a i {
  font-size: 12px;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .portfolio-details .meta-bar {
    padding: 24px 0;
    margin-bottom: 48px;
  }

  .portfolio-details .meta-bar .meta-item {
    margin-bottom: 16px;
  }
}

.portfolio-details .overview-block {
  margin-bottom: 80px;
  text-align: center;
}

.portfolio-details .overview-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.portfolio-details .overview-block p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .overview-block {
    margin-bottom: 56px;
  }

  .portfolio-details .overview-block h2 {
    font-size: 26px;
  }
}

.portfolio-details .impact-row {
  margin-bottom: 80px;
  padding: 48px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .impact-row .impact-item {
  text-align: center;
}

.portfolio-details .impact-row .impact-item .impact-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.portfolio-details .impact-row .impact-item .impact-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .portfolio-details .impact-row {
    margin-bottom: 56px;
    padding: 32px 0;
  }

  .portfolio-details .impact-row .impact-item {
    margin-bottom: 24px;
  }

  .portfolio-details .impact-row .impact-item:last-child {
    margin-bottom: 0;
  }

  .portfolio-details .impact-row .impact-item .impact-number {
    font-size: 32px;
  }
}

.portfolio-details .capabilities-block {
  margin-bottom: 80px;
}

.portfolio-details .capabilities-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .capabilities-block .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.portfolio-details .capabilities-block .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .capabilities-block .capability-card i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.portfolio-details .capabilities-block .capability-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.portfolio-details .capabilities-block .capability-card p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .capabilities-block {
    margin-bottom: 56px;
  }

  .portfolio-details .capabilities-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .capabilities-block .capability-card {
    padding: 32px 24px;
  }
}

.portfolio-details .tech-block {
  margin-bottom: 64px;
  text-align: center;
}

.portfolio-details .tech-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.portfolio-details .tech-block .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.portfolio-details .tech-block .tech-list .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  padding: 8px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.portfolio-details .tech-block .tech-list .tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .portfolio-details .tech-block {
    margin-bottom: 48px;
  }

  .portfolio-details .tech-block h3 {
    font-size: 20px;
  }

  .portfolio-details .tech-block .tech-list .tag {
    padding: 6px 16px;
    font-size: 12px;
  }
}

.portfolio-details .actions-block {
  margin-bottom: 80px;
}

.portfolio-details .actions-block .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 0 8px;
}

.portfolio-details .actions-block .action-btn.primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.portfolio-details .actions-block .action-btn.primary-action:hover {
  opacity: 0.85;
}

.portfolio-details .actions-block .action-btn.outline-action {
  background: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .actions-block .action-btn.outline-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .portfolio-details .actions-block .action-btn {
    display: flex;
    justify-content: center;
    margin: 0 0 12px 0;
  }

  .portfolio-details .actions-block .action-btn:last-child {
    margin-bottom: 0;
  }
}

.portfolio-details .related-block {
  padding-top: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .related-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .related-block .related-card {
  display: block;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.portfolio-details .related-block .related-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.portfolio-details .related-block .related-card:hover .view-link {
  color: var(--accent-color);
}

.portfolio-details .related-block .related-card:hover .view-link i {
  transform: translateX(3px);
}

.portfolio-details .related-block .related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-details .related-block .related-card .related-info {
  padding: 28px;
}

.portfolio-details .related-block .related-card .related-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.portfolio-details .related-block .related-card .related-info p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.portfolio-details .related-block .related-card .related-info .view-link {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.portfolio-details .related-block .related-card .related-info .view-link i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .portfolio-details .related-block {
    padding-top: 48px;
  }

  .portfolio-details .related-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .related-block .related-card img {
    height: 160px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .hero-image img {
  width: 100%;
  display: block;
}

.service-details .intro-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.service-details .intro-content .lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.service-details .intro-content p {
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-details .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-top: 24px;
}

.service-details .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .overview-details .detail-row:last-child {
  border-bottom: none;
}

.service-details .overview-details .detail-row .detail-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .overview-details .detail-row .detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .section-label {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.service-details .capabilities-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .capabilities-section .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-details .capabilities-section .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .capabilities-section .capability-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.service-details .capabilities-section .capability-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .capabilities-section .capability-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .workflow-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .workflow-section .workflow-step {
  padding: 40px 32px;
  height: 100%;
}

.service-details .workflow-section .workflow-step .step-num {
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.service-details .workflow-section .workflow-step h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .workflow-section .workflow-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

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

.service-details .testimonial-block {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .testimonial-block i.bi-quote {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
}

.service-details .testimonial-block p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--default-color);
}

.service-details .testimonial-block .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details .testimonial-block .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .testimonial-block .author h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--heading-color);
}

.service-details .testimonial-block .author span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block {
  padding: 48px;
  text-align: center;
}

.service-details .cta-block h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.service-details .cta-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .cta-block .cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.service-details .cta-block .cta-contacts span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block .cta-contacts span i {
  color: var(--accent-color);
  margin-right: 8px;
}

@media (max-width: 992px) {
  .service-details .intro-content h2 {
    font-size: 1.8rem;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 60px 0;
  }

  .service-details .bottom-section {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .service-details .intro-content {
    margin-top: 32px;
  }

  .service-details .intro-content h2 {
    font-size: 1.6rem;
  }

  .service-details .section-label {
    margin-bottom: 32px;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 48px 0;
  }

  .service-details .testimonial-block,
  .service-details .cta-block {
    padding: 32px;
  }
}

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