﻿@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Murecho", system-ui, -apple-system, "Segoe UI", sans-serif;
--heading-font: "Cormorant Garamond", Georgia, serif;
--hero-font: "Forum", "Cormorant Garamond", Georgia, serif;
--home-hero-font: "Forum", "Cormorant Garamond", Georgia, serif;
  --nav-font: "Murecho", system-ui, 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: #f7f2ea; /* Background color for the entire website, including individual sections */
  --default-color: #31585c; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1484a8; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c9974e; /* 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: #fcf8f2; /* 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: #31585c;  /* The default color of the main navmenu links */
  --nav-hover-color: #c9974e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #fcf8f2; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #fcf8f2; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #31585c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1484a8; /* 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: #fcf8f2;
  --surface-color: #fffdf8;
}

.dark-background {
  --background-color: #0d2f33;
  --default-color: #fffef7;
  --heading-color: #fffef7;
  --surface-color: #143a3f;
  --contrast-color: #fffef7;
}

/* 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-style: normal;
}

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);
  font-style: italic;
}

.lead,
.hero-kicker,
.mini-label,
.story-overline,
.service-kicker,
.hero-side-card h3,
.mc-hero-message-intro .hero-kicker,
.story-page .story-lead-number {
  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: rgba(0, 0, 0, 0);
  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 .brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: max-content;
}

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

.header .logo .sitename {
  font-size: 32px;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-style: italic;
}

.header .logo .sitename .sitename-strong {
  font-weight: 500;
}

.header .logo .brand-tagline {
  display: block;
  width: 100%;
  font-size: 9.5px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: justify;
  text-align-last: justify;
  color: color-mix(in srgb, var(--heading-color), transparent 18%);
  text-transform: none;
  white-space: nowrap;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  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 .sitename {
    font-size: 25px;
  }

  .header .logo .brand-tagline {
    display: block;
    font-size: 8px;
    letter-spacing: 0.025em;
    text-align: left;
    text-align-last: left;
  }

  .header .cta-btn {
    display: none;
  }

  .header .navmenu {
    order: 2;
    margin-left: auto;
  }

  .header .navmenu .mobile-nav-toggle {
    display: block;
  }

  .mc-brand-page .mc-hero .hero-static-media img,
  .mc-brand-page .mc-hero .carousel-item img {
    object-position: 18% center;
  }
}

@media (max-width: 767px) {
  .mc-brand-page .mc-hero .hero-static-media img,
  .mc-brand-page .mc-hero .carousel-item img {
    object-position: 12% center;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #5b5b5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

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

/*--------------------------------------------------------------
# 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: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

/* 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: 6px;
    background: linear-gradient(90deg, rgba(8, 28, 31, 0.94) 0%, rgba(20, 132, 168, 0.88) 50%, rgba(8, 28, 31, 0.94) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(228, 195, 138, 0.24);
    box-shadow: 0 18px 42px rgba(8, 28, 31, 0.32);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 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 !important;
    position: fixed;
    top: 78px;
    right: 20px;
    bottom: auto;
    left: 20px;
    padding: 14px 0;
    overflow: visible;
    max-height: none;
    z-index: 9998;
  }
}

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

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

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

.footer .social-links a i {
  font-size: 16px;
}

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

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

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

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

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 50%, var(--brand-gold-mid) 66%, var(--brand-gold-light) 100%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  box-shadow: 0 16px 34px rgba(242, 210, 132, 0.24), 0 10px 24px rgba(215, 172, 82, 0.14);
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 38%, var(--brand-gold-mid) 62%, var(--brand-gold-light) 100%);
  color: var(--brand-gold-text);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.about .about-img img {
  border-radius: 20px;
}

.about .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 20px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 160px;
}

.about .experience-badge h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--accent-color);
}

.about .experience-badge p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--heading-color);
}

.about .projects-badge {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: var(--accent-color);
  padding: 20px;
  border-radius: 22px;
  text-align: center;
  min-width: 160px;
}

.about .projects-badge h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--contrast-color);
}

.about .projects-badge p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-item .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.about .feature-item .feature-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .check-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 15px 38px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .about .experience-badge {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    min-width: 140px;
  }

  .about .experience-badge h2 {
    font-size: 2.8rem;
  }

  .about .experience-badge p {
    font-size: 0.8rem;
  }

  .about .projects-badge {
    top: 15px;
    right: 15px;
    padding: 15px;
    min-width: 140px;
    border-radius: 10px;
  }

  .about .projects-badge h2 {
    font-size: 2rem;
  }

  .about .projects-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .about .experience-badge {
    padding: 12px;
    min-width: 120px;
  }

  .about .experience-badge h2 {
    font-size: 2.2rem;
  }

  .about .experience-badge p {
    font-size: 0.75rem;
  }

  .about .projects-badge {
    padding: 12px;
    min-width: 120px;
  }

  .about .projects-badge h2 {
    font-size: 1.8rem;
  }

  .about .projects-badge p {
    font-size: 0.7rem;
  }
}

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

.services .services-content .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services .services-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services .services-content h2 {
    font-size: 32px;
  }
}

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

.services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .services-content .btn-consultation span {
  margin-right: 8px;
}

.services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.services .services-content .btn-consultation:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

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

.services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services .service-card .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: var(--accent-color);
  transition: all 0.4s;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.services .service-card:hover .content h4 a {
  color: var(--contrast-color);
}

.services .service-card:hover .content p {
  color: var(--contrast-color);
}

.services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.services .swiper-navigation button:last-child {
  margin-right: 0;
}

.services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

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

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content {
  padding-right: 20px;
}

@media (max-width: 992px) {
  .call-to-action .cta-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .badge i {
  font-size: 16px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

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

.call-to-action .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.call-to-action .features-list .feature-item i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.call-to-action .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

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

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

.call-to-action .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #6c5ce7 50%) 100%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .trust-indicators small {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.call-to-action .trust-indicators .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.call-to-action .trust-indicators .rating i {
  color: #fbbf24;
  font-size: 14px;
}

.call-to-action .trust-indicators .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  pointer-events: none;
}

.features .features-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .features .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.features .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .features-content h2 {
    font-size: 2rem;
  }
}

.features .features-content>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.features .main-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .features .main-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.features .main-feature .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .main-feature .feature-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.features .main-feature .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  border: none;
}

.features .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.features .feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features .feature-card:hover::before {
  opacity: 1;
}

.features .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  color: var(--contrast-color);
}

.features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features .feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

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

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

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

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

.portfolio .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.portfolio .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
}

.pricing .pricing-item .pricing-icon {
  width: 56px;
  height: 56px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pricing .pricing-item .pricing-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.pricing .pricing-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .pricing-item .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.pricing .pricing-item .price .currency {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
}

.pricing .pricing-item .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.pricing .pricing-item .description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.pricing .pricing-item .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing .pricing-item .features-list li {
  padding: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pricing .pricing-item .features-list li i {
  color: var(--accent-color);
  font-size: 18px;
}

.pricing .pricing-item .btn-pricing {
  display: inline-block;
  padding: 12px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.pricing .pricing-item.featured {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--accent-color), transparent 97%), var(--surface-color));
}

.pricing .pricing-item.featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .pricing-item.featured .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item .price {
    font-size: 40px;
  }

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

  .pricing .pricing-item .price .period {
    font-size: 14px;
  }

  .pricing .pricing-item .features-list li {
    font-size: 14px;
  }

  .pricing .pricing-item .btn-pricing {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

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

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

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

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

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

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

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

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

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

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.team .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(54, 144, 231, 0.15);
}

.team .team-card:hover .image-wrapper .social-links {
  opacity: 1;
  visibility: visible;
}

.team .image-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.team .image-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team .image-wrapper .social-links a {
  width: 35px;
  height: 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team .image-wrapper .social-links a:hover {
  background: var(--heading-color);
  transform: scale(1.1);
}

.team .content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.team .content .position {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 15px;
}

.team .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team .team-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .team .image-wrapper img {
    width: 100px;
    height: 100px;
  }

  .team .image-wrapper .social-links {
    width: 100px;
    height: 100px;
    gap: 8px;
  }

  .team .image-wrapper .social-links a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .team .content h4 {
    font-size: 20px;
  }

  .team .content .position {
    font-size: 13px;
  }

  .team .content p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.recent-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.recent-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.recent-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.recent-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.recent-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-posts .featured-content {
  padding: 32px;
}

.recent-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recent-posts .post-title {
  margin: 0 0 20px 0;
}

.recent-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

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

.recent-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.recent-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.recent-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recent-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.recent-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.recent-posts .read-more::after {
  content: "â†’";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.recent-posts .read-more:hover::after {
  margin-left: 12px;
}

.recent-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.recent-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

.recent-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

.recent-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .recent-content {
  padding: 20px;
}

.recent-posts .recent-title {
  margin: 8px 0 12px 0;
}

.recent-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-posts .recent-title a:hover {
  color: var(--accent-color);
}

.recent-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.recent-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.recent-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.recent-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.recent-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .recent-posts .featured-post {
    margin-bottom: 40px;
  }

  .recent-posts .featured-img {
    height: 250px;
  }

  .recent-posts .featured-content {
    padding: 24px;
  }

  .recent-posts .post-title a {
    font-size: 24px;
  }

  .recent-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .recent-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .recent-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .recent-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .recent-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .recent-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recent-posts .recent-post {
    flex-direction: column;
  }

  .recent-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

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

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

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

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

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

.portfolio-details .portfolio-slider-container .portfolio-details-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(54, 144, 231, 0.1);
}

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

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

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination {
  bottom: 20px;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--surface-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

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

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev {
  color: var(--surface-color);
  background: rgba(54, 144, 231, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-slider-container .portfolio-details-slider .swiper-slide img {
    height: 250px;
  }
}

.portfolio-details .project-description h2 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
}

.portfolio-details .project-description p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.portfolio-details .project-description .feature-highlights {
  margin: 50px 0;
}

.portfolio-details .project-description .feature-highlights h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-description .feature-highlights .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.15);
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-icon i {
  color: var(--contrast-color);
  font-size: 22px;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content h4 {
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.portfolio-details .project-description .feature-highlights .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.portfolio-details .project-description .technologies-used h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.portfolio-details .project-description .technologies-used .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.portfolio-details .project-description .technologies-used .tech-stack .tech-tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio-details .project-info-card {
  background: var(--surface-color);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(54, 144, 231, 0.1);
  margin-bottom: 30px;
  border: 1px solid rgba(54, 144, 231, 0.08);
}

.portfolio-details .project-info-card h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .project-info-card .info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .project-info-card .info-item:last-child {
  border-bottom: none;
  margin-bottom: 30px;
}

.portfolio-details .project-info-card .info-item h4 {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-details .project-info-card .info-item p {
  color: var(--default-color);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-details .project-info-card .info-item p a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .project-info-card .info-item p a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .project-info-card .info-item p a:hover i {
  transform: translate(3px, -3px);
}

.portfolio-details .project-info-card .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.portfolio-details .project-info-card .cta-buttons .btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid rgba(54, 144, 231, 0.3);
}

.portfolio-details .project-info-card .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .portfolio-details .project-info-card {
    padding: 25px;
  }

  .portfolio-details .project-info-card .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.portfolio-details .project-stats-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 30%));
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(54, 144, 231, 0.2);
}

.portfolio-details .project-stats-card h3 {
  color: var(--contrast-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .project-stats-card .stat-item {
  text-align: center;
  margin-bottom: 25px;
}

.portfolio-details .project-stats-card .stat-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-stats-card .stat-item .stat-number {
  color: var(--contrast-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  display: block;
}

.portfolio-details .project-stats-card .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .portfolio-details .project-stats-card {
    padding: 25px;
  }

  .portfolio-details .project-stats-card .stat-item .stat-number {
    font-size: 28px;
  }
}

.portfolio-details .related-projects h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-details .related-projects .related-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(54, 144, 231, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 144, 231, 0.1);
}

.portfolio-details .related-projects .related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(54, 144, 231, 0.15);
}

.portfolio-details .related-projects .related-item:last-child {
  margin-bottom: 0;
}

.portfolio-details .related-projects .related-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .related-projects .related-item .related-content {
  padding: 20px;
}

.portfolio-details .related-projects .related-item .related-content h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-details .related-projects .related-item .related-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.portfolio-details .related-projects .related-item .related-content .related-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.portfolio-details .related-projects .related-item .related-content .related-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .portfolio-details .project-description {
    margin-bottom: 40px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-description h2 {
    font-size: 26px;
  }

  .portfolio-details .project-description .feature-highlights h3,
  .portfolio-details .project-description .technologies-used h3 {
    font-size: 20px;
  }

  .portfolio-details .project-description .feature-highlights .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .portfolio-details .project-description .technologies-used .tech-stack .tech-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-content .service-image {
  margin-bottom: 40px;
}

.service-details .service-main-content .service-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-details .service-main-content .service-image img:hover {
  transform: translateY(-5px);
}

.service-details .service-main-content .service-description h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-main-content .service-description .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-details .service-main-content .service-description p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-main-content .features-included {
  margin: 50px 0;
  padding: 40px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-details .service-main-content .features-included h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.service-details .service-main-content .features-included .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .service-main-content .features-included .feature-item .feature-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .features-included .feature-item .feature-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-main-content .process-steps {
  margin-top: 50px;
}

.service-details .service-main-content .process-steps h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-main-content .process-steps .step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-main-content .process-steps .step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-main-content .process-steps .step-item .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.service-details .service-main-content .process-steps .step-item .step-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-main-content .process-steps .step-item .step-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-details .service-sidebar .service-info-card,
.service-details .service-sidebar .testimonial-card,
.service-details .service-sidebar .cta-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .service-info-card:hover,
.service-details .service-sidebar .testimonial-card:hover,
.service-details .service-sidebar .cta-card:hover {
  transform: translateY(-5px);
}

.service-details .service-sidebar .service-info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info-card .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info-card .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info-card .info-item .info-label {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .service-info-card .info-item .info-value {
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card .quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .quote-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details .service-sidebar .testimonial-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
}

.service-details .service-sidebar .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.service-details .service-sidebar .testimonial-card .testimonial-author .author-info span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .cta-card {
  text-align: center;
}

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

.service-details .service-sidebar .cta-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-sidebar .cta-card .btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  color: var(--contrast-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.service-details .service-sidebar .cta-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(54, 144, 231, 0.3);
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-card .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.service-details .service-sidebar .cta-card .contact-info .contact-item i {
  color: var(--accent-color);
}

.service-details .service-sidebar .cta-card .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .service-description h2 {
    font-size: 2rem;
  }

  .service-details .service-main-content .features-included {
    padding: 25px;
  }

  .service-details .service-main-content .process-steps .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-posts .featured-post:hover .featured-img img {
  transform: scale(1.05);
}

.blog-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.blog-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

.blog-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-posts .featured-content {
  padding: 32px;
}

.blog-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-posts .post-title {
  margin: 0 0 20px 0;
}

.blog-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-posts .post-title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.blog-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.blog-posts .read-more::after {
  content: "â†’";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.blog-posts .read-more:hover::after {
  margin-left: 12px;
}

.blog-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.blog-posts .recent-post:hover .recent-title a {
  color: var(--accent-color);
}

.blog-posts .recent-post:hover .recent-img img {
  transform: scale(1.05);
}

.blog-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

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

.blog-posts .recent-content {
  padding: 20px;
}

.blog-posts .recent-title {
  margin: 8px 0 12px 0;
}

.blog-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-posts .recent-title a:hover {
  color: var(--accent-color);
}

.blog-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.blog-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.blog-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .blog-posts .featured-post {
    margin-bottom: 40px;
  }

  .blog-posts .featured-img {
    height: 250px;
  }

  .blog-posts .featured-content {
    padding: 24px;
  }

  .blog-posts .post-title a {
    font-size: 24px;
  }

  .blog-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .blog-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .blog-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .blog-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .blog-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-posts .recent-post {
    flex-direction: column;
  }

  .blog-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

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

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

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

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

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

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

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

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

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

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

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

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

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

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

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

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/*--------------------------------------------------------------
# Premium MC Brand Overrides
--------------------------------------------------------------*/
:root {
  --default-font: "Murecho", system-ui, sans-serif;
--heading-font: "Cormorant Garamond", Georgia, serif;
--hero-font: "Forum", "Cormorant Garamond", Georgia, serif;
--home-hero-font: "Forum", "Cormorant Garamond", Georgia, serif;
  --nav-font: "Murecho", system-ui, sans-serif;
  --background-color: #f7f2ea;
  --default-color: #31585c;
  --heading-color: #1484a8;
  --accent-color: #c9974e;
  --brand-petrol: #0d2f33;
  --brand-petrol-deep: #081c1f;
  --brand-teal: #1484a8;
  --brand-teal-deep: #0d2f33;
  --brand-teal-glow: #6fccec;
  --brand-teal-soft: rgba(20, 132, 168, 0.14);
  --brand-ivory: #f7f2ea;
  --brand-ivory-soft: #fcf8f2;
  --brand-surface: rgba(252, 248, 242, 0.94);
  --brand-surface-gradient: linear-gradient(145deg, rgba(254, 251, 246, 0.98) 0%, rgba(249, 241, 231, 0.96) 50%, rgba(241, 229, 215, 0.94) 100%);
  --brand-surface-gradient-soft: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(248, 240, 231, 0.95) 60%, rgba(243, 233, 222, 0.93) 100%);
  --brand-panel-gradient: linear-gradient(145deg, rgba(253, 249, 243, 0.97) 0%, rgba(248, 239, 229, 0.94) 54%, rgba(239, 226, 211, 0.92) 100%);
  --brand-dark-gradient: linear-gradient(135deg, rgba(8, 28, 31, 0.96) 0%, rgba(13, 47, 51, 0.94) 48%, rgba(20, 132, 168, 0.78) 100%);
  --brand-dark-gradient-soft: linear-gradient(135deg, rgba(13, 47, 51, 0.9) 0%, rgba(20, 132, 168, 0.7) 100%);
  --brand-gold-light: #fff2cf;
  --brand-gold-soft: rgba(244, 210, 132, 0.24);
  --brand-gold: #f2d284;
  --brand-gold-mid: #d7ac52;
  --brand-gold-deep: #bb8f39;
  --brand-gold-bronze: #f7e2a7;
  --brand-gold-text: #2a5156;
  --brand-border: rgba(215, 172, 82, 0.24);
  --brand-shadow: 0 22px 50px rgba(13, 47, 51, 0.08);
  --surface-color: #fcf8f2;
  --contrast-color: #ffffff;
  --nav-color: #fcf8f2;
  --nav-hover-color: #c9974e;
}

body.mc-brand-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(233, 218, 200, 0.48), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(245, 233, 219, 0.42), transparent 30%),
    radial-gradient(circle at 58% 72%, rgba(236, 223, 209, 0.3), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f9f1e9 52%, #f3e7db 100%);
}

.mc-brand-page .dark-background {
  --background-color: transparent;
  --default-color: #fffef7;
  --heading-color: #fffef7;
  --surface-color: rgba(255, 253, 241, 0.2);
  --contrast-color: #fffef7;
  background: var(--brand-dark-gradient);
}

.mc-brand-page .light-background {
  background:
    radial-gradient(circle at 14% 20%, rgba(236, 220, 202, 0.3), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(245, 231, 216, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(248, 240, 231, 0.92) 58%, rgba(242, 232, 220, 0.9) 100%);
}

.mc-brand-page .section {
  padding: 68px 0 100px;
}

.mc-brand-page .section-title {
  margin-bottom: 22px;
}

.mc-brand-page .mc-clients .section-title,
.mc-brand-page .mc-about .section-title,
.mc-brand-page .mc-about-personal .section-title,
.mc-brand-page .mc-services .section-title,
.mc-brand-page .mc-portfolio .section-title,
.mc-brand-page .mc-gallery .section-title,
.mc-brand-page .mc-contact .section-title {
  margin-bottom: 22px;
}

.mc-brand-page #contact {
  scroll-margin-top: 112px;
}

.mc-brand-page .section-title h2,
.mc-brand-page .hero h1,
.mc-brand-page .hero h2,
.mc-brand-page .booking-panel-premium h2,
.mc-brand-page .premium-copy-block h2,
.mc-brand-page .premium-block-title {
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.mc-brand-page .premium-copy-block h2,
.mc-brand-page .premium-block-title {
  font-size: clamp(1.28rem, 2.3vw, 2.17rem);
  margin-bottom: 1.5rem;
}

.mc-brand-page .section-title h2 {
  font-size: clamp(1.34rem, 1.99vw, 1.95rem);
  text-transform: none !important;
  margin-bottom: 8px;
}

.mc-brand-page .section-title p {
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  max-width: 44rem;
  margin-inline: auto;
  margin-top: 0;
  text-transform: none !important;
}

.mc-brand-page .showreel-section-title {
  margin-bottom: 1.5rem !important;
}

.mc-brand-page .showreel-section-title h2 {
  margin-bottom: 20px;
}

.mc-brand-page .showreel-section-title p {
  max-width: 36rem;
  margin-top: 0;
}

.mc-brand-page .header {
  --background-color: rgba(13, 47, 51, 0.24);
  background: linear-gradient(90deg, rgba(8, 28, 31, 0.9) 0%, rgba(20, 132, 168, 0.74) 50%, rgba(8, 28, 31, 0.9) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 151, 78, 0.22);
}

.mc-brand-page.scrolled .header {
  --background-color: rgba(13, 47, 51, 0.9);
  background: linear-gradient(90deg, rgba(8, 28, 31, 0.98) 0%, rgba(20, 132, 168, 0.82) 50%, rgba(8, 28, 31, 0.98) 100%);
}

.story-page .header {
  background: linear-gradient(90deg, rgba(8, 28, 31, 0.9) 0%, rgba(20, 132, 168, 0.74) 50%, rgba(8, 28, 31, 0.9) 100%);
}

.story-page.scrolled .header {
  background: linear-gradient(90deg, rgba(8, 28, 31, 0.98) 0%, rgba(20, 132, 168, 0.82) 50%, rgba(8, 28, 31, 0.98) 100%);
}

.mc-brand-page .header .logo .sitename {
  font-size: 34px;
  letter-spacing: -0.03em;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .header .logo .brand-tagline {
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .navmenu a,
.mc-brand-page .navmenu a:focus {
  color: rgba(236, 222, 193, 0.92);
  font-weight: 500;
}

.mc-brand-page .navmenu li:hover > a,
.mc-brand-page .navmenu .active,
.mc-brand-page .navmenu .active:focus {
  color: #eadbbd;
  background: linear-gradient(135deg, rgba(242, 230, 202, 0.98) 0%, rgba(228, 210, 176, 0.96) 34%, rgba(212, 180, 124, 0.9) 52%, rgba(228, 210, 176, 0.96) 68%, rgba(242, 230, 202, 0.98) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .header .cta-btn,
.mc-brand-page .btn-get-started,
.mc-brand-page .btn-outline-light {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 700;
}

.mc-brand-page .header .cta-btn,
.mc-brand-page .premium-contact-form .form-submit button {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  color: var(--brand-gold-text);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border: 0;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 16px 34px rgba(242, 210, 132, 0.28), 0 10px 24px rgba(215, 172, 82, 0.16);
}

.mc-brand-page .header .cta-btn::after,
.mc-brand-page .btn-get-started::after,
.mc-brand-page .btn-outline-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 248, 232, 0.24) 50%, transparent 66%);
  transform: translateX(-130%);
  animation: mcButtonShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

.mc-brand-page .mc-hero {
  min-height: calc(100vh - 68px);
  padding: 0;
}

.mc-brand-page .main {
  padding-top: 68px;
}

.mc-brand-page .mc-hero .hero-static-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mc-brand-page .mc-hero .hero-static-media img,
.mc-brand-page .mc-hero .carousel-item img {
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
  height: 100%;
  filter: brightness(0.68) saturate(0.98);
}

.mc-brand-page .hero-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.mc-brand-page .hero-carousel-overlay::after {
  display: none;
}

.mc-brand-page .mc-hero .info {
  z-index: 3;
  width: 100%;
}

.mc-brand-page .hero-premium-copy {
  max-width: 1220px;
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mc-brand-page .hero-kicker,
.mc-brand-page .mini-label {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(111, 204, 236, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
}

.mc-brand-page .hero h1,
.mc-brand-page .hero h2 {
  font-family: var(--home-hero-font);
  font-size: clamp(1.91rem, 4.58vw, 3.76rem);
  max-width: 18ch;
  margin-left: auto;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: normal;
  line-height: 1.04;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 20px rgba(7, 23, 25, 0.12);
}

.mc-brand-page .hero-word-accent {
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff7eb;
  font-variant: small-caps;
  text-transform: lowercase;
}

.mc-brand-page .hero p {
  max-width: 56ch;
  font-size: 1.12rem;
  color: rgba(255, 249, 241, 0.86);
}

.mc-brand-page .hero .hero-gold-copy {
  max-width: 44ch;
  margin-bottom: 20px;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-page .story-hero-copy .hero-gold-copy {
  max-width: 44ch;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 33px 0 24px;
}

.mc-brand-page .hero-premium-copy.text-lg-end .hero-actions {
  justify-content: flex-end;
}

.mc-brand-page .btn-get-started {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-teal-glow) 0%, var(--brand-teal) 55%, var(--brand-petrol) 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 16px 34px rgba(13, 47, 51, 0.22);
}

.mc-brand-page .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid rgba(242, 210, 132, 0.55);
  color: #fffef7;
  background: linear-gradient(135deg, rgba(255, 242, 207, 0.34) 0%, rgba(242, 210, 132, 0.28) 50%, rgba(255, 242, 207, 0.24) 100%);
  box-shadow: 0 0 0 1px rgba(255, 242, 207, 0.12) inset, 0 14px 30px rgba(242, 210, 132, 0.14);
}

.mc-brand-page .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mc-brand-page .hero-highlights span {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(228, 195, 138, 0.22) 0%, rgba(201, 151, 78, 0.16) 52%, rgba(111, 204, 236, 0.1) 100%);
  border: 1px solid rgba(228, 195, 138, 0.35);
  color: #fff7eb;
  font-size: 0.92rem;
}

.mc-brand-page .hero-side-card,
.mc-brand-page .client-logo-card,
.mc-brand-page .showreel-point,
.mc-brand-page .mc-service-card,
.mc-brand-page .mc-portfolio-card,
.mc-brand-page .testimonial-premium-card,
.mc-brand-page .insight-premium-card,
.mc-brand-page .premium-contact-form,
.mc-brand-page .contact-card,
.mc-brand-page .mc-booking-teaser,
.mc-brand-page .booking-panel-premium,
.mc-brand-page .mc-stat-card {
  background: var(--brand-surface-gradient);
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  box-shadow: var(--brand-shadow);
}

.mc-brand-page .hero-side-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  color: #fff8f0;
  background: linear-gradient(180deg, rgba(228, 195, 138, 0.24), rgba(13, 47, 51, 0.5));
  border: 1px solid rgba(201, 151, 78, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  font-size: 1rem;
}

.mc-brand-page .hero-side-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 24%, rgba(228, 195, 138, 0.18), transparent 26%),
    radial-gradient(circle at 82% 26%, rgba(111, 204, 236, 0.12), transparent 24%);
  opacity: 0.75;
  animation: mcGlowPulse 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.mc-brand-page .hero-side-card > * {
  position: relative;
  z-index: 1;
}

.mc-brand-page .hero-side-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
}

.mc-brand-page .hero-bottom-strip {
  margin-top: 96px;
}

.mc-brand-page .hero-bottom-strip .hero-side-card {
  width: 100%;
  padding: 18px 22px;
}

.mc-brand-page .hero-bottom-strip .hero-side-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 248, 240, 0.96);
}

@media (min-width: 992px) {
  .mc-brand-page .mc-hero {
    position: relative;
    min-height: calc(100vh - 68px);
    height: calc(100vh - 68px);
    max-height: calc(100vh - 68px);
  }

  .mc-brand-page .mc-hero .info {
    display: flex;
    align-items: stretch;
    min-height: 100%;
    height: 100%;
  }

  .mc-brand-page .mc-hero .info .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    height: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mc-brand-page .hero-premium-copy {
    margin-bottom: 0;
    max-width: min(100%, 58ch);
    margin-right: 0;
    text-align: right;
    align-items: flex-end;
  }

  .mc-brand-page .hero h1,
  .mc-brand-page .hero h2 {
    font-size: clamp(2.3rem, 5.5vw, 4.5rem);
    max-width: 28ch;
    text-align: right;
    line-height: 0.98;
    margin-bottom: 34px;
  }

  .mc-brand-page .hero .hero-gold-copy {
    margin-bottom: 22px;
  }

  .mc-brand-page .hero-actions {
    margin: 28px 0 0;
  }

  .mc-brand-page .hero-bottom-strip {
    display: none;
  }
}

@media (min-width: 992px) and (max-height: 900px) {
  .mc-brand-page .mc-hero .info .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .mc-brand-page .hero-premium-copy {
    max-width: min(100%, 52ch);
    margin-right: 0;
  }

  .mc-brand-page .hero h1,
  .mc-brand-page .hero h2 {
    font-size: clamp(1.87rem, 4.32vw, 3.53rem);
    max-width: 25ch;
    line-height: 0.99;
    margin-bottom: 28px;
  }

  .mc-brand-page .hero .hero-gold-copy {
    margin-bottom: 20px;
  }

  .mc-brand-page .hero-actions {
    margin-top: 24px;
  }
}

@media (min-width: 992px) and (max-height: 780px) {
  .mc-brand-page .mc-hero .info .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mc-brand-page .hero-premium-copy {
    max-width: min(100%, 46ch);
    margin-right: 0;
  }

  .mc-brand-page .hero h1,
  .mc-brand-page .hero h2 {
    font-size: clamp(1.67rem, 3.53vw, 2.95rem);
    max-width: 24ch;
    line-height: 0.98;
    margin-bottom: 24px;
  }

  .mc-brand-page .hero .hero-gold-copy {
    margin-bottom: 18px;
  }

  .mc-brand-page .hero-actions {
    margin-top: 20px;
  }
}

.mc-brand-page .mc-hero-message {
  position: relative;
  padding-top: 34px;
  padding-bottom: 24px;
  background: linear-gradient(135deg, rgba(13, 47, 51, 0.98), rgba(20, 132, 168, 0.9) 58%, rgba(8, 28, 31, 0.98) 100%);
  overflow: hidden;
}

.mc-brand-page .mc-hero-message::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 24%, rgba(228, 195, 138, 0.18), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(111, 204, 236, 0.14), transparent 24%);
  opacity: 0.78;
  pointer-events: none;
}

.mc-brand-page .mc-hero-message-panel {
  position: relative;
  overflow: hidden;
  padding: 38px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(13, 47, 51, 0.12);
  backdrop-filter: blur(10px);
}

.mc-brand-page .mc-hero-message-panel > * {
  position: relative;
  z-index: 1;
}

.mc-brand-page .mc-hero-message-intro .hero-kicker {
  margin-bottom: 18px;
  color: #e3d1ae;
  font-size: clamp(1.575rem, 2.34vw, 2.295rem);
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-style: italic;
  text-transform: none !important;
}

.mc-brand-page .mc-hero-message .small-caps-word {
  font-variant: small-caps;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.mc-brand-page .mc-hero-message-intro p,
.mc-brand-page .mc-hero-message-copy p {
  margin-bottom: 18px;
  color: rgba(236, 222, 193, 0.92);
  font-size: 1.05rem;
  line-height: 1.78;
}

.mc-brand-page .mc-hero-message-intro p:last-child,
.mc-brand-page .mc-hero-message-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .mc-brand-page .mc-hero-message {
    padding-top: 26px;
  }

  .mc-brand-page .mc-hero-message-panel {
    padding: 28px 24px;
  }

  .mc-brand-page .mc-hero-message-intro .hero-kicker {
    font-size: clamp(1.575rem, 2.34vw, 2.295rem);
  }
}

.mc-brand-page .client-logo-card {
  width: 200px;
  min-height: 108px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(228, 195, 138, 0.18) 0%, rgba(252, 248, 242, 0.96) 45%, rgba(201, 151, 78, 0.18) 100%);
  box-shadow: none;
}

.mc-brand-page .client-logo-card img {
  max-width: 100%;
  max-height: 68px;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.mc-brand-page .client-swiper-shell .swiper-wrapper {
  transition-timing-function: linear !important;
}

.mc-brand-page .showreel-frame,
.mc-brand-page .showreel-visual,
.mc-brand-page .gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--brand-panel-gradient);
  box-shadow: 0 30px 60px rgba(13, 47, 51, 0.16);
}

.mc-brand-page .showreel-frame img,
.mc-brand-page .showreel-visual img,
.mc-brand-page .gallery-card img,
.mc-brand-page .mc-portfolio-card img,
.mc-brand-page .premium-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-brand-page .showreel-frame {
  min-height: 440px;
}

.mc-brand-page .showreel-visual {
  height: 100%;
  min-height: 100%;
  max-height: 460px;
}

.mc-brand-page .showreel-visual img {
  object-position: top center;
}

.mc-brand-page .showreel-frame::after,
.mc-brand-page .gallery-card::after,
.mc-brand-page .mc-portfolio-card .portfolio-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(111, 204, 236, 0.05), rgba(13, 47, 51, 0.34));
}

.mc-brand-page .showreel-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff7eb;
}

.mc-brand-page .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 242, 207, 0.3) 0%, rgba(242, 210, 132, 0.22) 52%, rgba(255, 242, 207, 0.26) 100%);
  border: 1px solid rgba(255, 242, 207, 0.42);
  color: #fff;
  font-size: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 22px rgba(242, 210, 132, 0.18);
}

.mc-brand-page .showreel-points {
  display: grid;
  gap: 18px;
}

.mc-brand-page .showreel-copy-col,
.mc-brand-page .showreel-visual-col {
  display: flex;
}

.mc-brand-page .showreel-copy-col {
  flex-direction: column;
}

.mc-brand-page .showreel-copy-col .section-title {
  margin-bottom: 18px;
}

.mc-brand-page .showreel-copy-col .showreel-points {
  flex: 0 0 auto;
}

.mc-brand-page .showreel-visual-col .showreel-visual {
  flex: 1 1 auto;
}

.mc-brand-page .showreel-point,
.mc-brand-page .mc-service-card,
.mc-brand-page .testimonial-premium-card,
.mc-brand-page .insight-premium-card,
.mc-brand-page .mc-booking-teaser,
.mc-brand-page .booking-panel-premium,
.mc-brand-page .mc-stat-card {
  padding: 22px;
}

.mc-brand-page .showreel-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mc-brand-page .showreel-point i,
.mc-brand-page .mc-service-card > i {
  color: var(--brand-teal);
  font-size: 1.6rem;
}

.mc-brand-page .premium-frame {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 65px rgba(13, 47, 51, 0.14);
}

.mc-brand-page .mc-about .position-relative,
.mc-brand-page .mc-about .col-lg-7 {
  display: flex;
  flex-direction: column;
}

.mc-brand-page .mc-about .about-img.premium-frame,
.mc-brand-page .mc-about .premium-copy-block {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
}

.mc-brand-page .mc-about .about-img.premium-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-brand-page .premium-badge {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 50%, var(--brand-gold-mid) 66%, var(--brand-gold-light) 100%);
  color: var(--brand-gold-text);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(242, 210, 132, 0.24);
}

.mc-brand-page .premium-badge h2,
.mc-brand-page .premium-badge p {
  color: var(--brand-gold-text);
}

.mc-brand-page .premium-copy-block,
.mc-brand-page .premium-contact-form,
.mc-brand-page .mc-booking-teaser {
  padding: 10px 0;
}

.mc-brand-page .mc-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.mc-brand-page .mc-stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--heading-color);
}

.mc-brand-page .mc-service-card {
  height: 100%;
}

.mc-brand-page .mc-service-card.accent {
  background: linear-gradient(180deg, rgba(201, 151, 78, 0.16), rgba(252, 248, 242, 0.98));
}

.mc-brand-page .mc-service-card .service-kicker,
.mc-brand-page .mc-portfolio-card .portfolio-info .kicker {
  display: block;
  margin: 6px 0 18px;
  color: var(--heading-color);
  font-size: 1.26rem;
  font-weight: 500;
  font-family: var(--heading-font);
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.mc-brand-page .mc-portfolio-card .portfolio-info .kicker {
  line-height: 1.07;
}

.mc-brand-page .insight-premium-card h3,
.mc-brand-page .testimonial-premium-card strong,
.mc-brand-page .mc-booking-teaser h3 {
  font-family: var(--default-font);
}

.mc-brand-page .mc-service-card h3 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--heading-color);
}

.mc-brand-page .mc-portfolio-card .portfolio-info h3 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.mc-brand-page .mc-portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mc-brand-page .mc-portfolio-card .portfolio-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.mc-brand-page .featured-card .portfolio-img {
  min-height: 520px;
}

.mc-brand-page .small-card .portfolio-img {
  min-height: 240px;
}

.mc-brand-page .wide-card .portfolio-img {
  min-height: 280px;
}

.mc-brand-page .mc-portfolio-card .portfolio-info {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.mc-brand-page .portfolio-meta-lines {
  display: grid;
  gap: 6px;
  color: var(--brand-teal-deep);
  font-size: 0.95rem;
  flex: 1;
}

.mc-brand-page .portfolio-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand-teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.mc-brand-page .portfolio-more-link::after {
  content: ">";
  font-size: 1rem;
  line-height: 1;
}

.mc-brand-page .portfolio-more-link:hover {
  color: var(--brand-teal);
}

.portfolio-page .portfolio-detail-section .premium-copy-block,
.portfolio-page .portfolio-detail-section .personal-copy-card {
  height: 100%;
}

.portfolio-page .portfolio-section-list {
  margin: 1.15rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.72rem;
  color: var(--default-color);
  line-height: 1.7;
}

.portfolio-page .portfolio-section-list li::marker {
  color: var(--brand-gold-mid);
}

.mc-brand-page .testimonial-premium-card p {
  font-size: 1.08rem;
  color: var(--brand-teal-deep);
}

.mc-brand-page .testimonial-premium-card strong,
.mc-brand-page .testimonial-premium-card span {
  display: block;
}

.mc-brand-page .gallery-card {
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.mc-brand-page .gallery-wide {
  min-height: 0;
}

.mc-brand-page .insight-premium-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-teal-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none !important;
}

.mc-brand-page .section-title,
.mc-brand-page .section-title *,
.mc-brand-page .insight-premium-card span {
  text-transform: none !important;
}

.mc-brand-page .section-title,
.mc-brand-page .section-title *,
.mc-brand-page .insight-premium-card span {
  text-transform: none !important;
}

.mc-brand-page .mc-booking {
  padding-top: 30px;
}

.story-page .story-booking {
  padding-top: 30px;
}

.mc-brand-page .booking-panel-premium,
.story-page .booking-panel-premium {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(13, 47, 51, 0.98), rgba(20, 132, 168, 0.94) 58%, rgba(8, 28, 31, 0.98) 100%);
}

.mc-brand-page .booking-panel-premium::before,
.story-page .booking-panel-premium::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 24% 28%, rgba(228, 195, 138, 0.18), transparent 26%),
    radial-gradient(circle at 76% 34%, rgba(111, 204, 236, 0.14), transparent 24%);
  opacity: 0.78;
  animation: mcGlowPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.mc-brand-page .booking-panel-premium > *,
.story-page .booking-panel-premium > * {
  position: relative;
  z-index: 1;
}

.mc-brand-page .booking-panel-premium h2,
.mc-brand-page .booking-panel-premium p,
.story-page .booking-panel-premium h2,
.story-page .booking-panel-premium p {
  color: rgba(236, 222, 193, 0.92);
}

.mc-brand-page .mc-booking .hero-kicker,
.story-page .story-booking .hero-kicker {
  color: #e3d1ae;
}

.mc-brand-page .booking-panel-premium .btn-get-started,
.story-page .booking-panel-premium .btn-get-started {
  white-space: nowrap;
  min-width: 220px;
  width: auto;
  flex: 0 0 auto;
  padding-inline: 32px;
  justify-content: center;
  text-align: center;
}

.mc-brand-page .hero-booking-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-width: 220px;
  width: auto;
  flex: 0 0 auto;
  margin: 0 !important;
  border-radius: 999px;
  padding-inline: 32px;
  justify-content: center;
  text-align: center;
  font-family: var(--default-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.mc-brand-page .hero .info .hero-booking-btn,
.mc-brand-page .mc-hero .info .hero-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  width: auto;
  padding: 14px 32px;
  margin: 0 !important;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-petrol) 0%, var(--brand-teal) 50%, var(--brand-petrol) 100%) !important;
  color: #fff !important;
  font-family: var(--default-font) !important;
  font-size: 1rem;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 16px 34px rgba(13, 47, 51, 0.22);
  transition: 0.3s ease;
}

.mc-brand-page .hero .info .hero-booking-btn:hover,
.mc-brand-page .mc-hero .info .hero-booking-btn:hover {
  color: #fff !important;
}

.mc-brand-page .hero-booking-btn-label {
  display: inline-block;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .btn-hero-gold,
.story-page .btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  width: auto;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-petrol) 0%, var(--brand-teal) 50%, var(--brand-petrol) 100%) !important;
  box-shadow: 0 16px 34px rgba(13, 47, 51, 0.22);
}

.mc-brand-page .btn-hero-gold-label,
.story-page .btn-hero-gold-label {
  display: inline-block;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .btn-hero-gold:hover,
.mc-brand-page .btn-hero-gold:focus,
.story-page .btn-hero-gold:hover,
.story-page .btn-hero-gold:focus {
  background: linear-gradient(135deg, var(--brand-petrol) 0%, var(--brand-teal) 50%, var(--brand-petrol) 100%) !important;
}

.mc-brand-page .btn-hero-gold:hover .btn-hero-gold-label,
.mc-brand-page .btn-hero-gold:focus .btn-hero-gold-label,
.story-page .btn-hero-gold:hover .btn-hero-gold-label,
.story-page .btn-hero-gold:focus .btn-hero-gold-label {
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .btn-get-started:not(.hero-booking-btn),
.story-page .btn-get-started,
.legal-page .btn-get-started,
.mc-brand-page .dark-background .btn-outline-light,
.story-page .dark-background .btn-outline-light,
.legal-page .dark-background .btn-outline-light {
  color: var(--brand-gold-mid);
  background-image: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .btn-get-started:not(.hero-booking-btn):hover,
.story-page .btn-get-started:hover,
.legal-page .btn-get-started:hover,
.mc-brand-page .dark-background .btn-outline-light:hover,
.story-page .dark-background .btn-outline-light:hover,
.legal-page .dark-background .btn-outline-light:hover {
  color: var(--brand-gold-mid);
  background-image: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .hero .info .hero-booking-btn:hover .hero-booking-btn-label,
.mc-brand-page .mc-hero .info .hero-booking-btn:hover .hero-booking-btn-label {
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mc-brand-page .premium-contact-layout {
  gap: 30px;
}

@keyframes mcShimmerDrift {
  0% {
    transform: translateX(-26%) translateY(0%);
    opacity: 0.35;
  }

  50% {
    opacity: 0.65;
  }

  100% {
    transform: translateX(12%) translateY(-2%);
    opacity: 0.4;
  }
}

@keyframes mcButtonShimmer {
  0%,
  72%,
  100% {
    transform: translateX(-130%);
    opacity: 0;
  }

  18%,
  38% {
    opacity: 1;
  }

  45% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes mcGlowPulse {
  0% {
    transform: scale(1);
    opacity: 0.42;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.68;
  }
}

.mc-brand-page .premium-contact-form {
  padding: 34px;
  background: var(--brand-panel-gradient);
}

.mc-brand-page .premium-contact-form .form-control {
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 242, 234, 0.78) 100%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(49, 88, 92, 0.92);
}

.mc-brand-page .premium-contact-form .form-control::placeholder,
.mc-brand-page .premium-contact-form textarea.form-control::placeholder {
  color: rgba(49, 88, 92, 0.58);
  font-size: 1rem;
  font-weight: 400;
  opacity: 1;
}

.mc-brand-page .premium-contact-form select.form-control {
  font-size: 1rem;
  font-weight: 500;
}

.mc-brand-page .premium-contact-form select.form-control:invalid {
  color: rgba(49, 88, 92, 0.58);
  font-weight: 400;
}

.mc-brand-page .premium-contact-form select.form-control option {
  color: rgba(49, 88, 92, 0.92);
}

.mc-brand-page .premium-contact-form .form-submit button {
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: initial;
  font-weight: 500;
  line-height: 1.5;
}

.mc-brand-page .header .cta-btn:hover,
.mc-brand-page .header .cta-btn:focus:hover,
.mc-brand-page .premium-contact-form .form-submit button:hover,
.mc-brand-page .premium-contact-form .form-submit button:focus {
  color: var(--brand-gold-text);
  background: color-mix(in srgb, var(--brand-gold), white 18%);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: initial;
}

@media (max-width: 991px) {
  .mc-brand-page .contact .map-wrapper {
    height: auto;
    overflow: visible;
  }

  .mc-brand-page .contact .contact-form-container,
  .mc-brand-page .contact .premium-contact-form {
    height: auto;
    min-height: 0;
  }

  .mc-brand-page .premium-contact-form .form-submit button {
    width: 100%;
    min-width: 0;
    padding: 14px 22px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

.mc-brand-page .contact-card {
  padding: 24px;
  height: 100%;
}

.mc-brand-page .contact-card .icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 204, 236, 0.24) 0%, rgba(20, 132, 168, 0.14) 100%);
}

.mc-brand-page .contact-card .icon-box i {
  color: var(--brand-teal-deep);
}

.mc-brand-page .section-title h2 {
  color: var(--brand-teal);
}

.mc-brand-page .section-title p,
.mc-brand-page .premium-copy-block p,
.mc-brand-page .mc-service-card p,
.mc-brand-page .insight-premium-card p,
.mc-brand-page .contact-text p,
.mc-brand-page .portfolio-info p {
  color: var(--default-color);
}

.mc-brand-page .contact-text-languages p {
  color: var(--brand-gold-deep) !important;
}

.mc-brand-page .mc-about-personal {
  background:
    radial-gradient(circle at 16% 20%, rgba(235, 220, 204, 0.3), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(244, 230, 216, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(252, 248, 242, 0.94) 0%, rgba(244, 234, 223, 0.92) 100%);
}

.mc-brand-page .personal-copy-card {
  background: var(--brand-surface-gradient-soft);
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  box-shadow: var(--brand-shadow);
}

.mc-brand-page .personal-copy-card {
  padding: 32px;
}

.mc-brand-page .story-visual-card {
  max-width: 100%;
  margin-left: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--brand-border);
  box-shadow: var(--brand-shadow);
  background: var(--brand-panel-gradient);
}

.mc-brand-page .story-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.mc-brand-page .personal-copy-card h3 {
  color: var(--brand-teal);
  font-family: var(--default-font);
  font-style: normal;
}

.mc-brand-page .personal-copy-card p {
  color: var(--default-color);
}

.mc-brand-page .personal-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--brand-teal);
  font-weight: 700;
  text-decoration: none;
}

.mc-brand-page .personal-story-link::after {
  content: ">";
  font-size: 1rem;
  line-height: 1;
}

.mc-brand-page .footer-bottom {
  padding: 26px 0;
}

.mc-brand-page .mc-footer,
.mc-brand-page .mc-footer .copyright,
.mc-brand-page .mc-footer .copyright p,
.mc-brand-page .mc-footer .copyright span,
.mc-brand-page .mc-footer .copyright strong,
.mc-brand-page .mc-footer .footer-bottom-links a {
  color: #fffef7 !important;
}

.story-page .story-hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 151, 78, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(111, 204, 236, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(13, 47, 51, 0.98), rgba(20, 132, 168, 0.86) 58%, rgba(8, 28, 31, 0.98));
}

.story-page .story-hero .container,
.story-page .story-hero-copy,
.story-page .story-hero-visual {
  position: relative;
  z-index: 2;
}

.story-page .story-hero-copy h1 {
  font-family: var(--hero-font);
  font-style: normal;
  font-size: clamp(1.29rem, 3.16vw, 2.58rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  font-weight: 400;
  max-width: 24ch;
}

.story-page .hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(111, 204, 236, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
}

.story-page .story-overline {
  margin: 0 0 14px;
  color: rgba(255, 249, 241, 0.86);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.story-page .story-hero-copy p {
  color: rgba(255, 254, 247, 0.88);
  font-size: 1.12rem;
  max-width: 42rem;
}

.story-page .story-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.story-page .story-hero-visual,
.story-page .story-full-photo,
.story-page .story-photo {
  display: block;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(13, 47, 51, 0.16);
}

.story-page .story-hero-visual img,
.story-page .story-full-photo img,
.story-page .story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-page .story-hero-visual {
  min-height: 560px;
}

.story-page .story-hero-visual img {
  min-height: 560px;
}

.story-page .story-lead-in {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.story-page .story-lead-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 38px;
  background: var(--brand-surface-gradient);
  border: 1px solid var(--brand-border);
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(13, 47, 51, 0.12);
}

.story-page .story-card-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.story-page .story-lead-card.story-card-plain {
  padding: 0;
}

.story-page .story-lead-number {
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-style: italic;
  line-height: 1;
  color: var(--brand-gold-bronze);
}

.story-page .story-lead-content p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--brand-teal-deep);
}

.story-page .story-text-card,
.story-page .story-quote-card {
  background: var(--brand-surface-gradient-soft);
  border: 1px solid var(--brand-border);
  border-radius: 30px;
  box-shadow: var(--brand-shadow);
}

.story-page .story-text-card {
  padding: 34px;
}

.story-page .story-text-card h2 {
  font-family: var(--heading-font);
  font-style: normal;
  color: var(--brand-teal);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.story-page .story-text-card p {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.85;
}

.story-page .story-dropcap::first-letter {
  float: left;
  margin: 0.08em 0.16em 0 0;
  font-family: var(--heading-font);
  font-size: 4.4rem;
  line-height: 0.8;
  color: var(--brand-gold-mid);
}

.story-page .story-photo-stack {
  position: relative;
  min-height: 620px;
}

.story-page .story-photo.primary {
  width: 78%;
  margin-left: auto;
}

.story-page .story-photo.primary img {
  min-height: 520px;
}

.story-page .story-photo.secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  border: 8px solid rgba(252, 248, 242, 0.96);
}

.story-page .story-photo.secondary img {
  min-height: 240px;
}

.story-page .story-photo-stack-alt .story-photo.primary {
  width: 78%;
  margin-left: auto;
}

.story-page .story-photo-stack-alt .story-photo.secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  border: 8px solid rgba(252, 248, 242, 0.96);
}

.story-page .story-breakout {
  position: relative;
}

.story-page .story-breakout-card {
  height: 100%;
  padding: 42px;
  background: linear-gradient(135deg, rgba(13, 47, 51, 0.98), rgba(20, 132, 168, 0.9));
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(13, 47, 51, 0.16);
}

.story-page .story-breakout-card.story-card-plain {
  padding: 0;
}

.story-page .story-breakout-card h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-style: normal;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.02;
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-page .story-breakout-card .mini-label {
  color: var(--brand-gold-mid);
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-page .story-side-visual {
  display: block;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(13, 47, 51, 0.12);
}

.story-page .story-side-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.story-page .story-full-photo img {
  min-height: 560px;
}

.story-page .story-horizontal-photo img {
  min-height: 340px;
}

.story-page .story-image-band {
  padding-top: 10px;
  padding-bottom: 10px;
}

.story-page .story-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.story-page .story-band-photo {
  display: block;
  overflow: hidden;
}

.story-page .story-band-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.story-page .story-quote-card {
  padding: 38px 34px;
  text-align: center;
  background: linear-gradient(135deg, rgba(228, 195, 138, 0.72) 0%, rgba(252, 248, 242, 0.92) 56%, rgba(111, 204, 236, 0.2) 100%);
}

.story-page .story-quote-card.story-card-plain {
  padding: 0;
}

.story-page .story-quote-card p {
  margin: 0;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.22;
  color: var(--brand-teal-deep);
}

.story-page .story-collage {
  display: grid;
  gap: 18px;
}

.story-page .story-collage .story-full-photo img {
  min-height: 420px;
}

.story-page .story-photo.tertiary img {
  min-height: 220px;
}

@media (max-width: 991px) {
  .story-page .story-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .story-page .story-lead-in {
    margin-top: -20px;
  }

  .story-page .story-lead-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px;
  }

  .story-page .story-hero-visual,
  .story-page .story-hero-visual img,
  .story-page .story-full-photo img {
    min-height: 360px;
  }

  .story-page .story-horizontal-photo img {
    min-height: 280px;
  }

  .story-page .story-photo-stack {
    min-height: auto;
  }

  .story-page .story-photo.primary,
  .story-page .story-photo.secondary {
    position: static;
    width: 100%;
    margin-left: 0;
  }

  .story-page .story-photo.secondary {
    margin-top: 18px;
    border-width: 0;
  }

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

  .story-page .story-band-photo img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .story-page .story-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .story-page .story-text-card {
    padding: 26px;
  }

  .story-page .story-quote-card {
    padding: 28px 24px;
  }

  .story-page .story-breakout-card {
    padding: 30px 24px;
  }
}

@media (max-width: 991px) {
  .mc-brand-page .mc-brand-page .section,
  .mc-brand-page .section {
    padding: 80px 0;
  }

  .mc-brand-page .hero h1,
  .mc-brand-page .hero h2 {
    max-width: none;
  }

  .mc-brand-page .booking-panel-premium,
  .mc-brand-page .mc-stat-grid {
    grid-template-columns: 1fr;
  }

  .mc-brand-page .booking-panel-premium {
    flex-direction: column;
    align-items: flex-start;
  }

  .mc-brand-page .featured-card .portfolio-img {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .mc-brand-page .hero-actions,
  .mc-brand-page .hero-highlights {
    flex-direction: column;
    align-items: stretch;
  }

  .mc-brand-page .btn-get-started,
  .mc-brand-page .btn-outline-light,
  .mc-brand-page .header .cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mc-brand-page .showreel-frame {
    min-height: 360px;
  }

  .mc-brand-page .showreel-visual {
    min-height: 320px;
    max-height: none;
  }

  .mc-brand-page .showreel-copy-col,
  .mc-brand-page .showreel-visual-col {
    display: block;
  }

  .mc-brand-page .story-visual-card img {
    min-height: 320px;
  }

  .mc-brand-page .story-visual-card {
    max-width: 100%;
  }

  .mc-brand-page .premium-contact-form {
    padding: 24px;
  }
}

@media (max-width: 1199px) {
  /* Header: transparent over hero, desktop palette after scroll */
  .mc-brand-page .header,
  .story-page .header {
    --background-color: transparent !important;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .mc-brand-page.scrolled .header {
    --background-color: rgba(13, 47, 51, 0.9) !important;
    background: linear-gradient(90deg, rgba(8, 28, 31, 0.98) 0%, rgba(20, 132, 168, 0.82) 50%, rgba(8, 28, 31, 0.98) 100%) !important;
    border-bottom: 1px solid rgba(201, 151, 78, 0.22) !important;
    backdrop-filter: blur(16px) !important;
  }

  .story-page.scrolled .header {
    --background-color: rgba(13, 47, 51, 0.9) !important;
    background: linear-gradient(90deg, rgba(8, 28, 31, 0.98) 0%, rgba(20, 132, 168, 0.82) 50%, rgba(8, 28, 31, 0.98) 100%) !important;
    border-bottom: 1px solid rgba(201, 151, 78, 0.22) !important;
    backdrop-filter: blur(16px) !important;
  }

  /* Hero: single mobile/tablet source of truth */
  .mc-brand-page .main {
    padding-top: 0 !important;
  }

  .mc-brand-page .mc-hero {
    position: relative !important;
    min-height: 100vh !important;
  }

  .mc-brand-page .mc-hero .hero-static-media img,
  .mc-brand-page .mc-hero .carousel-item img {
    object-position: 14% center !important;
  }

  .mc-brand-page .hero-actions {
    display: flex !important;
  }

  .mc-brand-page .hero-premium-copy .btn-outline-light {
    display: none !important;
  }

  .mc-brand-page .mc-hero .info {
    display: flex !important;
    align-items: stretch !important;
    min-height: 100vh !important;
  }

  .mc-brand-page .mc-hero .info .container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-height: 100% !important;
    padding-bottom: 36px !important;
  }

  .mc-brand-page .hero-bottom-strip {
    display: none !important;
  }

  .mc-brand-page .hero-premium-copy {
    margin-bottom: 12px !important;
    max-width: min(100%, 26rem) !important;
    text-align: left !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    transform: translateY(34px);
  }

  .mc-brand-page .hero h1,
  .mc-brand-page .hero h2 {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .mc-brand-page .hero-premium-copy.text-lg-end .hero-actions {
    justify-content: flex-start !important;
  }

  .mc-brand-page .hero-booking-btn {
    display: none !important;
    width: auto !important;
    min-width: 220px;
    max-width: 100%;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .mc-brand-page .mc-hero .hero-static-media img,
  .mc-brand-page .mc-hero .carousel-item img {
    object-position: 30% center !important;
  }

  .mc-brand-page .hero-premium-copy {
    transform: translateY(46px);
  }
}

.mc-brand-page .mc-portfolio-card .portfolio-img {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.mc-brand-page .featured-card .portfolio-img,
.mc-brand-page .small-card .portfolio-img,
.mc-brand-page .wide-card .portfolio-img {
  min-height: 0;
}
@media (min-width: 992px) {
  .mc-brand-page .personal-copy-card,
  .mc-brand-page .story-visual-card {
    height: 100%;
  }

  .mc-brand-page .story-visual-card img {
    height: 100%;
    min-height: 100%;
  }
}

.mc-brand-page .mc-gallery .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.mc-brand-page .mc-gallery .gallery-filter-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .mc-brand-page .mc-gallery .gallery-filter-break {
    display: none;
  }
}

.mc-brand-page .mc-gallery .gallery-filter {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(111, 204, 236, 0.2) 0%, rgba(20, 132, 168, 0.1) 100%);
  color: var(--brand-teal);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mc-brand-page .mc-gallery .gallery-filter:hover,
.mc-brand-page .mc-gallery .gallery-filter.filter-active {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 36%, var(--brand-gold) 52%, var(--brand-gold-mid) 68%, var(--brand-gold-light) 100%);
  color: var(--brand-teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(242, 210, 132, 0.18);
}

.mc-brand-page .mc-gallery .gallery-item {
  transition: opacity 0.25s ease;
}

.mc-brand-page .mc-gallery .gallery-card {
  display: block;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.mc-brand-page .mc-gallery .gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.mc-brand-page .mc-gallery .gallery-card.gallery-standard {
  min-height: 0;
}

.mc-brand-page .mc-gallery .gallery-card.gallery-wide {
  min-height: 0;
}

.mc-brand-page .mc-gallery .gallery-card.gallery-tall {
  min-height: 0;
}

.mc-brand-page .mc-gallery .gallery-card.gallery-feature {
  min-height: 0;
}

@media (max-width: 991px) {
  .mc-brand-page .mc-gallery .gallery-card.gallery-feature {
    min-height: 0;
  }

  .mc-brand-page .mc-gallery .gallery-card.gallery-tall {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .mc-brand-page .mc-gallery .gallery-filters {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }

  .mc-brand-page .mc-gallery .gallery-filter {
    padding: 10px 16px;
    font-size: 0.92rem;
  }

  .mc-brand-page .mc-gallery .gallery-card.gallery-standard,
  .mc-brand-page .mc-gallery .gallery-card.gallery-wide,
  .mc-brand-page .mc-gallery .gallery-card.gallery-tall,
  .mc-brand-page .mc-gallery .gallery-card.gallery-feature {
    min-height: 0;
  }
}

.gallery-page .mc-gallery .gallery-card {
  aspect-ratio: auto;
  min-height: 260px;
}

.gallery-page .mc-gallery .gallery-card.gallery-standard {
  min-height: 260px;
}

.gallery-page .mc-gallery .gallery-card.gallery-wide {
  min-height: 320px;
}

.gallery-page .mc-gallery .gallery-card.gallery-tall {
  min-height: 420px;
}

.gallery-page .mc-gallery .gallery-card.gallery-feature {
  min-height: 460px;
}

.gallery-page .mc-gallery .gallery-card.gallery-square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-page .mc-gallery .gallery-card.gallery-compact-height {
  min-height: 320px;
}

.gallery-page .mc-gallery .gallery-card img.gallery-align-left {
  object-position: left center;
}

.gallery-page .mc-gallery .gallery-card img.gallery-align-right {
  object-position: right center;
}

.gallery-page .mc-gallery .gallery-card img.gallery-align-mid-right {
  object-position: 78% center;
}

@media (max-width: 991px) {
  .gallery-page .mc-gallery .gallery-card.gallery-feature {
    min-height: 360px;
  }

  .gallery-page .mc-gallery .gallery-card.gallery-tall {
    min-height: 340px;
  }

  .gallery-page .mc-gallery .gallery-card.gallery-square {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .gallery-page .mc-gallery .gallery-card.gallery-standard,
  .gallery-page .mc-gallery .gallery-card.gallery-wide,
  .gallery-page .mc-gallery .gallery-card.gallery-tall,
  .gallery-page .mc-gallery .gallery-card.gallery-feature {
    min-height: 240px;
  }

  .gallery-page .mc-gallery .gallery-card.gallery-square {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}

.mc-brand-page .mc-clients .container-fluid {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.mc-brand-page .client-logo-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mc-brand-page .mc-clients .swiper,
.mc-brand-page .mc-clients .swiper-wrapper {
  width: 100%;
}

.mc-brand-page .mc-clients .swiper-slide {
  width: auto;
}
.mc-brand-page .story-travel-badge {
  position: absolute;
  right: 0;
  bottom: -30px;
  padding: 20px;
  min-width: 150px;
  border-radius: 22px;
  text-align: center;
  z-index: 2;
}

.mc-brand-page .story-travel-badge h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.mc-brand-page .story-travel-badge p {
  margin: 5px 0 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 991px) {
  .mc-brand-page .story-travel-badge {
    right: 15px;
    bottom: -15px;
    padding: 15px;
    min-width: 140px;
    border-radius: 10px;
  }

  .mc-brand-page .story-travel-badge h2 {
    font-size: 1.9rem;
  }

  .mc-brand-page .story-travel-badge p {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .mc-brand-page .story-travel-badge {
    padding: 12px;
    min-width: 120px;
  }

  .mc-brand-page .story-travel-badge h2 {
    font-size: 1.7rem;
  }

  .mc-brand-page .story-travel-badge p {
    font-size: 0.7rem;
  }
}

.mc-brand-page .mc-footer .footer-bottom-links {
  row-gap: 10px;
}

.mc-brand-page .mc-footer .footer-legal-nowrap {
  white-space: nowrap;
}

.mc-brand-page .premium-contact-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: rgba(49, 88, 92, 0.88);
  font-size: 0.96rem;
  line-height: 1.6;
}

.mc-brand-page .premium-contact-form .consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-teal);
  flex: 0 0 auto;
}

.mc-brand-page .premium-contact-form .consent-check a,
.mc-brand-page .premium-contact-form .form-privacy-note a {
  color: var(--brand-teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mc-brand-page .premium-contact-form .form-privacy-note {
  margin: 14px 0 0;
  color: rgba(49, 88, 92, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-page .legal-hero {
  position: relative;
  overflow: hidden;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(224, 194, 138, 0.18), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(100, 217, 215, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(13, 47, 51, 0.98), rgba(20, 132, 168, 0.82) 58%, rgba(8, 28, 31, 0.98));
}

.legal-page .legal-hero .container,
.legal-page .legal-hero-copy,
.legal-page .legal-hero-visual {
  position: relative;
  z-index: 2;
}

.legal-page .legal-hero-copy h1 {
  font-family: var(--hero-font);
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  color: #fffef7;
  margin-bottom: 22px;
}

.legal-page .legal-hero-copy p {
  max-width: 62ch;
  color: rgba(255, 254, 247, 0.82);
  margin-bottom: 0;
}

.legal-page .legal-hero-visual {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(228, 195, 138, 0.24);
  box-shadow: 0 24px 56px rgba(7, 23, 25, 0.24);
}

.legal-page .legal-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.legal-page .legal-shell {
  display: grid;
  gap: 24px;
}

.legal-page .legal-card,
.legal-page .consent-status-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--brand-border);
  background: var(--brand-panel-gradient);
  box-shadow: var(--brand-shadow);
}

.legal-page .legal-card h2,
.legal-page .consent-status-card h2,
.legal-page .consent-status-card h3 {
  color: var(--brand-teal);
  margin-bottom: 16px;
}

.legal-page .legal-card h3 {
  color: var(--brand-teal-deep);
  margin: 24px 0 12px;
  font-size: 1.2rem;
}

.legal-page .legal-card p:last-child {
  margin-bottom: 0;
}

.legal-page .legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: rgba(255, 254, 247, 0.76);
  font-size: 0.92rem;
}

.legal-page .legal-list {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-page .legal-list li + li {
  margin-top: 10px;
}

.legal-page .legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-page .consent-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.legal-page .consent-chip {
  border-radius: 20px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(252, 248, 242, 0.9) 0%, rgba(245, 237, 226, 0.84) 100%);
  border: 1px solid rgba(201, 151, 78, 0.16);
}

.legal-page .consent-chip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-teal-deep);
}

.legal-page .consent-chip span {
  color: rgba(49, 88, 92, 0.82);
}

.legal-page .legal-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  width: min(440px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(228, 195, 138, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 195, 138, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(252, 248, 242, 0.97) 0%, rgba(244, 234, 223, 0.96) 100%);
  box-shadow: 0 26px 60px rgba(7, 23, 25, 0.26);
  backdrop-filter: blur(14px);
}

.consent-banner h3 {
  color: var(--brand-teal);
  margin-bottom: 12px;
}

.consent-banner p {
  margin-bottom: 0;
  color: rgba(49, 88, 92, 0.84);
}

.consent-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  min-height: 48px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.consent-btn:hover {
  transform: translateY(-1px);
}

.consent-btn-primary {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold-mid) 34%, var(--brand-gold) 50%, var(--brand-gold-mid) 66%, var(--brand-gold-light) 100%);
  color: var(--brand-gold-text);
  box-shadow: 0 16px 34px rgba(242, 210, 132, 0.28), 0 10px 24px rgba(215, 172, 82, 0.16);
}

.consent-btn-secondary {
  background: linear-gradient(135deg, var(--brand-petrol) 0%, var(--brand-teal) 50%, var(--brand-petrol) 100%);
  color: var(--brand-gold-mid);
  border: 1px solid rgba(228, 195, 138, 0.18);
  box-shadow: 0 14px 28px rgba(13, 47, 51, 0.16);
}

.consent-btn-ghost {
  background: rgba(13, 47, 51, 0.06);
  color: var(--brand-teal-deep);
  border: 1px solid rgba(15, 111, 118, 0.14);
}

.consent-btn-secondary:hover,
.consent-btn-secondary:focus {
  color: var(--brand-gold-light);
  box-shadow: 0 18px 34px rgba(13, 47, 51, 0.2);
}

.consent-btn-ghost:hover,
.consent-btn-ghost:focus {
  color: var(--brand-teal-deep);
  background: rgba(13, 47, 51, 0.1);
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.consent-modal.is-open {
  display: block;
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 25, 0.58);
  backdrop-filter: blur(8px);
}

.consent-modal-dialog {
  position: relative;
  width: min(720px, calc(100vw - 28px));
  margin: 6vh auto 0;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(228, 195, 138, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 195, 138, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(252, 248, 242, 0.98) 0%, rgba(244, 234, 223, 0.97) 100%);
  box-shadow: 0 28px 80px rgba(7, 23, 25, 0.28);
}

.consent-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(15, 111, 118, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-teal-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.consent-modal h3 {
  color: var(--brand-teal);
  margin-bottom: 10px;
}

.consent-modal p {
  color: rgba(49, 88, 92, 0.84);
}

.consent-option-list {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.consent-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(201, 151, 78, 0.16);
  background: linear-gradient(180deg, rgba(252, 248, 242, 0.92) 0%, rgba(245, 237, 226, 0.82) 100%);
}

.consent-option input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--brand-teal);
  flex: 0 0 auto;
}

.consent-option strong {
  display: block;
  color: var(--brand-teal-deep);
  margin-bottom: 4px;
}

.consent-option span {
  display: block;
  color: rgba(49, 88, 92, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 991.98px) {
  .legal-page .legal-grid,
  .legal-page .consent-status-grid {
    grid-template-columns: 1fr;
  }

  .consent-banner {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }

  .consent-modal-dialog {
    margin-top: 3vh;
    max-height: 92vh;
    overflow-y: auto;
    padding: 26px;
  }
}

body.consent-modal-open {
  overflow: hidden;
}

