/**
* Template Name: Landio
* Template URL: https://bootstrapmade.com/landio-bootstrap-landing-page-template/
* Updated: Sep 06 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #4a4b64;  /* The default color of the main navmenu links */
  --nav-hover-color: #0b1ae9; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #4a4b64; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0b1ae9; /* 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: #f5f6ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1030;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f302f;
  --contrast-color: #ffffff;
}

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

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

body.overflow-hidden {
  overflow: hidden;
}

/* Make footer stick to bottom on short pages */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main.main {
  flex: 1 0 auto;
}

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

main > section:not(.hero):not(.blog-hero):not(.article-header) {
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
}

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

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

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

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

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

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

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

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

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

/* Related products grid (service pages) */
.related-products .product-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.related-products .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}
.related-products .product-card .related-thumb {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.related-products .product-body {
  padding: 18px 20px 22px;
  text-align: left;
}
.related-products .product-body h4 { margin: 0 0 8px; }
.related-products .product-actions { margin-top: 12px; display:flex; gap:10px; }

/* Simple image modal */
.related-image-modal-backdrop { position:fixed; inset:0; background:rgba(8,12,22,0.56); display:flex; align-items:center; justify-content:center; z-index:1100; opacity:0; pointer-events:none; transition:opacity .22s ease; }
.related-image-modal-backdrop.is-open { opacity:1; pointer-events:auto; }
.related-image-modal-dialog { width:90%; max-width:920px; max-height:90vh; background:var(--surface-color); border-radius:12px; overflow:hidden; box-shadow:0 20px 60px rgba(8,12,22,0.28); transform:translateY(8px) scale(.99); transition:transform .22s ease; }
.related-image-modal-backdrop.is-open .related-image-modal-dialog { transform:translateY(0) scale(1); }
.related-image-modal-header { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; border-bottom:1px solid rgba(0,0,0,0.04); }
.related-image-modal-body { padding:12px; text-align:center; }
.related-image-modal-body img { width:100%; height:auto; max-height:72vh; object-fit:contain; display:block; }
.related-image-modal-close { background:transparent; border:0; font-size:24px; line-height:1; cursor:pointer; }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Prevent header items from overlapping when viewport changes or at different zoom levels.
   Make logo and action button fixed-size, allow nav to take remaining space and shrink safely. */
.header .header-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .btn-getstarted {
  flex: 0 0 auto;
}

/* Let nav occupy remaining space but avoid overflowing neighbouring items. */
.header .navmenu {
  flex: 1 1 auto;
  min-width: 0; /* allow the flex item to shrink properly */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Slightly reduce nav link padding on tight desktop widths and allow items to shrink
   instead of overlapping the logo or CTA button. */
@media (min-width: 1200px) {
  .navmenu ul {
    justify-content: center;
    overflow: visible;
  }

  .navmenu li { flex-shrink: 1; min-width: 0; }

  .navmenu a,
  .navmenu a:focus {
    padding: 8px 10px;
    font-size: 14px;
  }

  .header .btn-getstarted { margin-left: 18px; }
}

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

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

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
.scrolled .header {
  --background-color: #ffffff;
}

/* Improve nav spacing on tablets */
@media (min-width: 769px) and (max-width: 1199px) {
  .navmenu a { padding: 10px 8px; font-size: 14px; }
  .header .header-container { padding: 8px 20px; }
}

/* Mobile / small tablet refinements */
@media (max-width: 768px) {
  .header .header-container {
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10,12,30,0.06);
  }

  .header .logo .sitename {
    display: inline-block;
    font-size: 15px;
    margin-left: 6px;
    font-weight: 600;
    color: var(--heading-color);
    vertical-align: middle;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header .logo img {
    max-height: 28px;
  }

  .header .btn-getstarted {
    padding: 6px 10px;
    font-size: 13px;
    margin-left: 8px;
    border-radius: 22px;
  }

/* Desktop: pin CTA to the far right and ensure nav centers safely */
@media (min-width: 1200px) {
  .header .btn-getstarted { margin-left: auto; }
  .navmenu ul { gap: 6px; }
}

  /* make sections render immediately on small screens to avoid large placeholders */
  main > section:not(.hero):not(.blog-hero):not(.article-header) {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  /* reduce hero vertical spacing on phones */
  .hero {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero .hero-content .hero-title {
    font-size: 2.2rem;
  }

  .hero .hero-content .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero .hero-content .hero-actions .btn-primary,
  .hero .hero-content .hero-actions .btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* iPad / small laptop tweaks for better proportions */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .hero-content .hero-title { font-size: 3rem; }
  .header .header-container { padding: 10px 18px; }
}

/* Testimonials: avatar sizing and card responsiveness */
.testimonials-carousel .testimonial-card .avatar img,
.testimonial-card .avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 40%);
}

@media (max-width: 768px) {
  .testimonials-carousel .testimonial-card {
    padding: 18px 14px;
  }
  .testimonial-card blockquote {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

/* Order modal: center, limit height, and prevent background scrolling when open */
.order-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}
.order-modal.is-open { display: flex; }
.order-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.order-modal-dialog {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  width: min(820px, 98%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 18px 40px rgba(11,20,60,0.12);
}
.order-modal-close { position: absolute; right: 12px; top: 12px; background: transparent; border: 0; font-size: 22px; cursor: pointer; }
.order-modal-logo img { width: 48px; height: 48px; border-radius: 8px; }

/* Prevent background page scroll when modal open */
html.order-modal-open, body.order-modal-open { 
  overflow: hidden; 
  height: 100%;
  overscroll-behavior: none; /* prevents scroll chaining on touch devices */
  touch-action: none; /* prevent touch-based background scroll on mobile */
  -webkit-overflow-scrolling: auto;
}

/* Keep header buttons visually stable while modal is open */
html.order-modal-open .header .btn-getstarted,
body.order-modal-open .header .btn-getstarted {
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

html.order-modal-open .hero .hero-actions .btn-primary,
body.order-modal-open .hero .hero-actions .btn-primary {
  transition: none !important;
  transform: none !important;
}

/* Allow the modal itself to receive touch/scroll even if root touch-action disabled */
.order-modal, .order-modal-dialog { touch-action: auto; }

@media (max-width: 768px) {
  .order-modal-dialog { padding: 18px; width: 96%; max-height: calc(100vh - 28px); }
  .order-modal .order-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .order-modal .order-modal-card { padding: 12px; }
}


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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    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: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .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;
  }
}

/*--------------------------------------------------------------
# Gallery Lightbox
--------------------------------------------------------------*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-color);
  box-shadow: 0 12px 30px rgba(11, 26, 233, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11, 26, 233, 0.16);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-item .item-label {
  padding: 16px 18px;
  font-weight: 600;
  color: var(--heading-color);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,246,255,0.96));
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 28, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.gallery-modal .gallery-modal-card {
  position: relative;
  max-width: min(920px, 100%);
  width: 100%;
  background: var(--surface-color);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-modal .gallery-modal-card img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
}

.gallery-modal .gallery-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--heading-color);
  font-size: 20px;
  cursor: pointer;
}

.gallery-modal .gallery-modal-caption {
  margin-top: 12px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

.about-hero .about-hero-image img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(11, 26, 233, 0.12);
}

.about-text-section {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about-text-section p {
  margin-bottom: 1.5rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(11, 26, 233, 0.95), rgba(42, 70, 255, 0.92));
  color: var(--contrast-color);
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 28px 80px rgba(11, 26, 233, 0.18);
  max-width: 900px;
  margin: 2rem auto;
}

.promo-card h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin: 24px 0 18px;
  line-height: 1.1;
}

.promo-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.85;
}

.promo-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.promo-phone {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--contrast-color);
}

.about-summary h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.about-summary p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .promo-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .promo-actions {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Increase horizontal spacing between footer columns to reduce cramped appearance */
.footer .footer-nav-wrapper .row {
  column-gap: 3rem; /* ~48px */
}

/* Slightly increase spacing for social links */
.footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 1.25rem;
}

/* Mobile: make footer columns stack and increase touch spacing */
@media (max-width: 767px) {
  .footer .footer-nav-wrapper .row {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  /* Prevent footer content from touching the viewport edge on narrow screens */
  .footer {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .footer .footer-nav-wrapper .col-6 {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.25rem;
  }

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

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

  .footer .nav-column .footer-nav {
    gap: 14px;
  }

  .footer .footer-social .row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .footer .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer .social-links .social-link {
    margin-right: 0;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
  }

  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-top: 0.5rem;
  }
}

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
  .footer .footer-social .social-links {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer services small layout */
.footer-services ul { list-style: disc; margin-left: 18px; padding-left: 10px; margin-bottom: 12px; }
.footer-services ul li { margin-bottom: 6px; color: color-mix(in srgb, var(--default-color), transparent 30%); font-size: 15px; }
.footer-services p { margin: 0 0 8px; color: color-mix(in srgb, var(--default-color), transparent 30%); font-size: 14px; line-height: 1.5; }
.text-success { color: #198754; text-decoration: none; }

@media (max-width: 991px) {
  .footer .footer-nav-wrapper .nav-column { text-align: left; }
  .footer .footer-nav-wrapper .col-md-4 { margin-bottom: 18px; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Ensure elements with data-aos are visible until AOS has initialized
   This avoids large blank areas when AOS script loads later. The class
   `aos-initialized` is added to <body> by JS after AOS.init(). */
body:not(.aos-initialized) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

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

.page-title .heading {
  padding: clamp(64px, 9vw, 110px) 0;
}

.page-title .heading h1 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
}

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

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

@media (max-width: 767px) {
  .page-title .heading {
    padding: 56px 0 40px;
  }

  .page-title .heading h1 {
    font-size: 2rem;
  }
}

.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: clamp(56px, 7vw, 90px) 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 767px) {
  section,
  .section {
    padding: clamp(40px, 6vw, 56px) 0;
  }
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 28px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-badge i {
  color: #FFD700;
  font-size: 0.875rem;
}

.hero .hero-content .hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-content .hero-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-title {
    font-size: 2.2rem;
  }
}

/* Improve header spacing and hero scale on small devices */
@media (max-width: 768px) {
  .header .header-container {
    padding: 8px 12px;
    border-radius: 18px;
  }

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

  .header .btn-getstarted {
    padding: 6px 12px;
    font-size: 13px;
    margin-left: 12px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero .hero-content .hero-title {
    font-size: 2.4rem;
  }

  .hero .hero-content .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* Tweak CTA sizes for small screens */
@media (max-width: 480px) {
  .hero .hero-content .hero-actions .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }
  .header .header-container { padding: 8px 8px; }
}

.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
}

.hero .hero-content .hero-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s;
}

.hero .hero-content .hero-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-primary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.hero .hero-content .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

.hero .hero-content .hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-metrics {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-metrics {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-metrics {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.hero .hero-content .hero-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.hero .hero-content .hero-metrics .metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.hero .hero-content .hero-metrics .metric-item .metric-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-content .hero-metrics .metric-item .metric-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-metrics .metric-item .metric-content {
  text-align: left;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-content .hero-metrics .metric-item .metric-content .metric-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

@media (max-width: 1199px) {
  .hero {
    padding: 48px 0 32px 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-content {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-section {
  position: relative;
}

.about .image-section .primary-image {
  position: relative;
  margin-bottom: 2rem;
}

.about .image-section .primary-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about .image-section .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .about .image-section .primary-image .experience-badge {
    top: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.about .image-section .primary-image .experience-badge .years {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about .image-section .primary-image .experience-badge .text {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-img {
  width: 100%;
  min-height: 180px;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-img:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about .image-section {
    margin-bottom: 3rem;
  }
}

.about .content-section {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .about .content-section {
    padding-left: 0;
  }
}

.about .section-intro {
  margin-bottom: 3rem;
}

.about .section-intro .company-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about .section-intro h2 {
  font-size: 2.125rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .section-intro h2 {
    font-size: 1.75rem;
  }
}

.about .section-intro .intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about .achievement-list {
  margin-bottom: 3rem;
}

.about .achievement-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.about .achievement-list .achievement-item .achievement-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about .achievement-list .achievement-item .achievement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

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

.about .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 576px) {
  .about .action-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.about .action-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .action-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.about .action-section .contact-info .contact-label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.about .action-section .contact-info .phone-number {
  font-size: 1.125rem;
  color: var(--heading-color);
  font-weight: 600;
}

.about .metrics-section {
  margin-top: 5rem;
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 70%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.about .metrics-section .metric-card {
  padding: 1.5rem 1rem;
}

.about .metrics-section .metric-card .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .about .metrics-section .metric-card .metric-value {
    font-size: 2rem;
  }
}

.about .metrics-section .metric-card .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: clamp(2rem, 3vw, 3rem);
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: clamp(1.25rem, 2vw, 2rem);
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services .services-grid .featured-service-card {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }

  .services .services-grid .featured-service-card .feature-highlights {
    margin-bottom: 2rem;
  }

  .services .services-tabs .nav-pills {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .services .services-tabs .nav-pills .nav-item {
    width: 100%;
  }

  .services .services-tabs .nav-pills .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    margin-bottom: 4rem;
  }

  .services .services-grid .featured-service-card {
    padding: 2rem 1.5rem;
  }

  .services .services-grid .featured-service-card .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .services .services-grid .featured-service-card .service-icon-large i {
    font-size: 1.8rem;
  }

  .services .services-grid .featured-service-card h3 {
    font-size: 1.5rem;
  }

  .services .services-grid .featured-service-card .feature-highlights .highlight-item {
    justify-content: flex-start;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }

  .services .services-tabs .tab-service-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-content h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.features .features-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.features .features-image {
  position: relative;
}

.features .features-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}

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

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

.features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4834d4 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.features .feature-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.features .feature-content h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.features .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .features .features-content {
    text-align: center;
  }

  .features .features-content h2 {
    font-size: 28px;
  }

  .features .features-grid {
    margin-top: 60px;
    gap: 30px;
  }

  .features .feature-item {
    gap: 16px;
  }

  .features .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-icon i {
    font-size: 20px;
  }
}

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

  .features .features-content h2 {
    font-size: 24px;
  }

  .features .features-content .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-list {
  margin-bottom: 30px;
}

.features-2 .features-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: left;
  height: 100%;
}

.features-2 .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features-2 .features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .features-list .feature-item .feature-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.features-2 .features-list .feature-item .feature-content {
  flex: 1;
}

.features-2 .features-list .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.features-2 .features-list .feature-item .feature-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  line-height: 1.5;
}

.features-2 .features-list .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.features-2 .features-list .feature-item .feature-content .feature-tags span {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.features-2 .cta-section {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.features-2 .cta-section .btn-primary,
.features-2 .cta-section .btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-2 .cta-section .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.features-2 .cta-section .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features-2 .cta-section .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-2 .cta-section .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .features-2 .features-list .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .features-2 .features-list .feature-item .feature-icon {
    align-self: center;
  }

  .features-2 .cta-section {
    flex-direction: column;
  }

  .features-2 .cta-section .btn-primary,
  .features-2 .cta-section .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .features-2 .features-content h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.testimonials .testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials .testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  align-items: stretch;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.testimonials .testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .testimonial-card.featured {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, var(--surface-color) 100%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.05);
}

.testimonials .testimonial-card.featured .featured-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #007bff 20%) 100%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-card.featured .featured-badge i {
  font-size: 0.875rem;
}

.testimonials .rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonials .rating i {
  color: #ffc107;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
}

.testimonials blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0 0 2rem 0;
  flex: 1 1 auto;
  position: relative;
  font-style: italic;
}

.testimonials blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials .user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials .user-info {
  flex: 1;
}

.testimonials .user-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

.testimonials .user-info .title {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonials .user-info .company {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.testimonials .navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.testimonials .nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .dots-indicator {
  display: flex;
  gap: 0.75rem;
}

.testimonials .dots-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .dots-indicator .dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-card {
    padding: 2rem;
  }

  .testimonials .testimonial-card.featured {
    transform: scale(1.02);
  }

  .testimonials blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials .testimonial-card.featured {
    transform: none;
  }

  .testimonials .testimonial-card:hover {
    transform: translateY(-8px);
  }

  .testimonials blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonials blockquote::before {
    font-size: 3rem;
    top: -0.75rem;
  }

  .testimonials .avatar {
    width: 50px;
    height: 50px;
  }

  .testimonials .user-info h4 {
    font-size: 1rem;
  }

  .testimonials .user-info .title {
    font-size: 0.85rem;
  }

  .testimonials .user-info .company {
    font-size: 0.8rem;
  }

  .testimonials .navigation-controls {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonials .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

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

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

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

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

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

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: color-mix(in srgb, var(--surface-color), #f8f9fa 50%);
}

.faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 95%);
}

.faq .faq-item:hover {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

.faq .faq-item .question-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.faq .faq-item .icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

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

.faq .faq-item .content-wrapper {
  flex: 1;
  min-width: 0;
}

.faq .faq-item .question {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.faq .faq-item .answer p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

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

  .faq .faq-item .question-wrapper {
    gap: 16px;
  }

  .faq .faq-item .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .faq .faq-item .icon-wrapper i {
    font-size: 20px;
  }

  .faq .faq-item .question {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .faq .faq-item .answer p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq .faq-item {
    padding: 20px 16px;
  }

  .faq .faq-item .question-wrapper {
    gap: 12px;
  }

  .faq .faq-item .icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .faq .faq-item .icon-wrapper i {
    font-size: 18px;
  }

  .faq .faq-item .question {
    font-size: 15px;
  }

  .faq .faq-item .answer p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  height: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.contact .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/misc/misc-1.webp") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.contact .contact-info-panel .panel-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .contact .contact-info-panel .panel-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-panel .panel-content {
    padding: 40px 30px;
  }
}

.contact .contact-info-panel .info-header {
  margin-bottom: 50px;
}

.contact .contact-info-panel .info-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .contact .contact-info-panel .info-header h2 {
    font-size: 32px;
  }
}

.contact .contact-info-panel .info-header p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .contact-info-panel .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
  flex: 1;
}

.contact .contact-info-panel .info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact .contact-info-panel .info-card:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  transform: translateX(10px);
}

.contact .contact-info-panel .info-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-panel .info-card .card-icon i {
  font-size: 22px;
}

.contact .contact-info-panel .info-card .card-content {
  flex: 1;
}

.contact .contact-info-panel .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.contact .contact-info-panel .info-card .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact .contact-info-panel .social-section {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding-top: 30px;
}

.contact .contact-info-panel .social-section h5 {
  font-size: 16px;
  color: var(--contrast-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.contact .contact-info-panel .social-section .social-icons {
  display: flex;
  gap: 15px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-info-panel .social-section .social-icons .social-icon i {
  font-size: 18px;
}

.contact .contact-info-panel .social-section .social-icons .social-icon:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Make other social link containers match the footer social-icon appearance */
.contact .contact-info-panel .social-section .header-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.header-social-links a,
.footer .footer-social .social-links a,
.social-icons a {
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  color: var(--contrast-color);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.header-social-links a i,
.footer .footer-social .social-links a i,
.social-icons a i {
  font-size: 20px;
  line-height: 1;
}

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

.contact .contact-form-wrapper {
  background: var(--surface-color);
  padding: 80px 60px;
  height: 100%;
  min-height: 650px;
}

@media (max-width: 992px) {
  .contact .contact-form-wrapper {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 40px 30px;
  }
}

.contact .contact-form-wrapper .form-header {
  margin-bottom: 50px;
}

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

@media (max-width: 768px) {
  .contact .contact-form-wrapper .form-header h3 {
    font-size: 26px;
  }
}

.contact .contact-form-wrapper .form-header .header-line {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-wrapper .modern-form .form-group {
  margin-bottom: 25px;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control {
  width: 100%;
  padding: 18px 25px;
  font-size: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .form-group .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .modern-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper .modern-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact .contact-form-wrapper .modern-form .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 18px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .modern-form .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover::before {
  left: 100%;
}

.contact .contact-form-wrapper .modern-form .submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-text,
.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  position: relative;
  z-index: 2;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.contact .contact-form-wrapper .modern-form .submit-btn .btn-icon i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .contact .contact-info-panel {
    min-height: auto;
  }

  .contact .contact-form-wrapper {
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.service-details .service-hero .service-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .service-hero .service-meta .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-details .service-hero .service-meta .reading-time {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  font-weight: 300;
}

.service-details .service-hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.service-details .service-hero .service-description {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  margin: 0;
}

.service-details .service-visual {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: 4px;
}

.service-details .service-visual img {
  width: 100%;
  height: clamp(240px, 34vw, 400px);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-details .service-visual img:hover {
  transform: scale(1.02);
}

.service-details .service-narrative {
  margin-bottom: 5rem;
}

.service-details .service-narrative h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .service-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--default-color);
  font-weight: 300;
}

.service-details .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-details .benefits-grid .benefit-card {
  text-align: center;
  padding: 0;
}

.service-details .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-details .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.service-details .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .benefits-grid .benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details .benefits-grid .benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .timeline-section {
  margin-bottom: 4rem;
}

.service-details .timeline-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details .timeline-section .timeline {
  position: relative;
}

.service-details .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .timeline-section .timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.service-details .timeline-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-details .timeline-section .timeline .timeline-item .timeline-marker span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.service-details .timeline-section .timeline .timeline-item .timeline-content small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-details .service-sidebar {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.service-details .overview-card,
.service-details .success-story,
.service-details .consultation-form {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.service-details .overview-card:hover,
.service-details .success-story:hover,
.service-details .consultation-form:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .overview-card .overview-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.service-details .overview-card .overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-details .overview-card .overview-stats .stat-item {
  text-align: center;
}

.service-details .overview-card .overview-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-details .overview-card .overview-stats .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.service-details .overview-card .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details .overview-card .overview-details .detail-row:last-child {
  margin-bottom: 0;
}

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

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

.service-details .success-story .story-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
}

.service-details .success-story .story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details .success-story .story-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .success-story .story-author .author-details h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.service-details .success-story .story-author .author-details span {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-author .author-details small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .success-story .story-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .success-story .story-metrics .metric {
  text-align: center;
}

.service-details .success-story .story-metrics .metric .metric-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.service-details .success-story .story-metrics .metric .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .consultation-form .form-header {
  margin-bottom: 2rem;
}

.service-details .consultation-form .form-header h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-details .consultation-form .form-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.service-details .consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.service-details .consultation-form .form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}

.service-details .consultation-form .form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.service-details .consultation-form input[type=text]:focus,
.service-details .consultation-form input[type=email]:focus,
.service-details .consultation-form input[type=tel]:focus,
.service-details .consultation-form select:focus,
.service-details .consultation-form textarea:focus {
  border-color: var(--accent-color);
}

.service-details .consultation-form input[type=text]::placeholder,
.service-details .consultation-form input[type=email]::placeholder,
.service-details .consultation-form input[type=tel]::placeholder,
.service-details .consultation-form select::placeholder,
.service-details .consultation-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .consultation-form .btn-consultation {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: none;
}

.service-details .consultation-form .btn-consultation:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.service-details .consultation-form .btn-consultation i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .service-details .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-details .service-hero .service-description {
    font-size: 1.1rem;
  }

  .service-details .service-visual img {
    height: 250px;
  }

  .service-details .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .timeline-section .timeline::before {
    left: 20px;
  }

  .service-details .timeline-section .timeline .timeline-item {
    padding-left: 60px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {
    font-size: 1rem;
  }

  .service-details .overview-card .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* SouvenirPro additions */
.whatsapp-float {
  position: fixed;
  right: 15px;
  bottom: 78px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  animation: souvenirPulse 1.8s infinite;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }

/* Article Table of Contents (TOC) */
.article-toc {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 16px;
  border-radius: 8px;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 160px);
  overflow: auto;
}
.article-toc h5 {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--heading-color);
}
.article-toc ul { list-style: none; padding-left: 0; margin: 0; }
.article-toc li { margin-bottom: 8px; }
.article-toc a { color: color-mix(in srgb, var(--default-color), transparent 10%); text-decoration: none; font-size: 14px; }
.article-toc a.toc-sub { padding-left: 8px; font-size: 13px; color: color-mix(in srgb, var(--default-color), transparent 30%); }
.article-toc a.active, .article-toc a:hover { color: var(--accent-color); font-weight: 600; }

@media (max-width: 991px) {
  .article-toc { position: static; max-height: none; margin-bottom: 16px; }
}

/* Order modal — Pesan Sekarang */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.order-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.order-modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 20px 18px 18px;
  box-shadow: 0 24px 60px rgba(36, 40, 89, 0.22);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.order-modal.is-open .order-modal-dialog {
  transform: translateY(0) scale(1);
}
.order-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
}
.order-modal-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.order-modal-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalLogoPop 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.15s both;
}
.order-modal-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.order-modal-header h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.order-modal-header p {
  margin: 0;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.order-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.order-modal-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.order-modal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(36, 40, 89, 0.1);
  border-color: var(--accent-color);
  color: inherit;
}
.order-modal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.order-modal-card strong {
  font-size: 0.9rem;
}
.order-modal-card small {
  font-size: 0.74rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}
.order-modal-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}
.order-modal-footer p {
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.order-modal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 40px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.order-modal-wa-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
html.order-modal-open, body.order-modal-open { 
  overflow: hidden; 
  height: 100%;
  overscroll-behavior: none;
}

@keyframes modalLogoPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Extra styles for order modal animation and typing area */
.order-modal-animation { display:flex; justify-content:center; margin-bottom:10px; }
.order-modal-animation .dino { font-size:34px; display:inline-block; transform-origin: center bottom; animation: dinoJump 1.6s ease-in-out infinite; }
@keyframes dinoJump { 0% { transform: translateY(0); } 18% { transform: translateY(-12px) rotate(-2deg); } 36% { transform: translateY(0); } 100% { transform: translateY(0); } }

.order-modal-typing { margin-top: 12px; display:flex; flex-direction: column; gap:8px; }
.typing-preview { background: color-mix(in srgb, var(--accent-color), transparent 96%); padding:10px 12px; border-radius: 12px; color: inherit; font-size:0.92rem; min-height:38px; }
.order-modal-input { width:100%; padding:8px 10px; border-radius:10px; border:1px solid color-mix(in srgb, var(--default-color), transparent 85%); background: transparent; resize:none; font-size:0.9rem; }
.order-modal-actions { display:flex; gap:8px; justify-content:flex-end; }
.order-modal-card { cursor: pointer; border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%); }

/* Non-clickable top-level Layanan link style */
.no-link { pointer-events: none; cursor: default; color: inherit; text-decoration: none; }

/* Disabled header nav item for non-navigable Layanan label (keeps dropdown icon functional) */
.nav-disabled { cursor: default; color: inherit; text-decoration: none; }

.footer-layanan-text { margin-top: 8px; font-size: 0.84rem; color: color-mix(in srgb, var(--default-color), transparent 30%); line-height: 1.4; }

/* Responsive modal tweaks */
@media (max-width: 900px) {
  .order-modal-dialog { width: min(480px, 96%); padding: 18px; }
  .order-modal-header h3 { font-size: 1.05rem; }
}
@media (max-width: 520px) {
  .order-modal-dialog { width: calc(100vw - 28px); padding: 14px; border-radius: 12px; }
  .order-modal-grid { gap: 8px; grid-template-columns: 1fr 1fr; }
  .order-modal-card { padding: 10px; }
  .order-modal-animation .dino { font-size: 28px; }
  .typing-preview { font-size: 0.88rem; }
}

.order-modal-card.active {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(36,40,89,0.08);
  transform: translateY(-2px);
}


/* WhatsApp widget bermerek */
.wa-widget {
  position: fixed;
  right: 15px;
  bottom: 78px;
  z-index: 99999;
}
.wa-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(320px, calc(100vw - 30px));
  background: var(--surface-color);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(36, 40, 89, 0.18);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.3s;
}
.wa-widget.is-open .wa-widget-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-widget-panel-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
}
.wa-widget-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wa-widget-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-widget-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.wa-widget-online {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--surface-color);
}
.wa-widget-panel-header strong {
  display: block;
  font-size: 1rem;
}
.wa-widget-status {
  font-size: 0.78rem;
  color: #22c55e;
  font-weight: 600;
}
.wa-widget-greet {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.wa-widget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.wa-chip {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-chip:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateY(-1px);
}
.wa-widget-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-widget-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.wa-widget-trigger {
  position: relative;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: var(--surface-color);
  box-shadow: 0 8px 28px rgba(36, 40, 89, 0.18);
  transition: transform 0.25s ease;
}
.wa-widget-trigger:hover {
  transform: translateY(-3px);
}
.wa-widget-trigger-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}
.wa-widget-trigger-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.wa-widget-trigger-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid var(--surface-color);
}
.wa-widget-trigger-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waRingPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waRingPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 575px) {
  .order-modal-grid { grid-template-columns: 1fr; }
  .wa-widget-panel { width: min(300px, calc(100vw - 24px)); }
}
@keyframes souvenirPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.48); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.product-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(36, 40, 89, 0.12); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-body { padding: 24px; }
.product-price { display: inline-block; margin-bottom: 12px; color: var(--accent-color); font-weight: 700; }
.product-body h4 { font-size: 22px; margin-bottom: 10px; }
.product-body p { min-height: 54px; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.product-actions .btn-primary,
.product-actions .btn-outline {
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}
.product-actions .btn-primary { background: var(--accent-color); color: var(--contrast-color); }
.product-actions .btn-outline { border: 1px solid color-mix(in srgb, var(--accent-color), transparent 35%); }
.map-box { overflow: hidden; border-radius: 8px; margin-top: 28px; min-height: 260px; }
.map-box iframe { width: 100%; height: 300px; border: 0; display: block; }
.ad-banner-section {
  padding: 28px 20px 40px;
  background: var(--background-color);
}
.ad-banner-section a {
  display: block;
  width: min(100%, 1140px);
  max-width: 1140px !important;
  margin: 20px auto;
  padding: 0;
  text-align: center;
}

/* WhatsApp preview modal (inserted by main.js) */
.wa-preview-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 12000; }
.wa-preview-modal.is-open { display: flex; }
.wa-preview-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.wa-preview-dialog { position: relative; background: #fff; padding: 18px; border-radius: 12px; width: min(720px, 96%); max-height: 84vh; overflow: auto; box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.wa-preview-dialog h3 { margin: 0 0 8px; font-size: 1.05rem; }
.wa-preview-body { margin: 12px 0; }
.wa-preview-text { white-space: pre-wrap; font-family: inherit; font-size: 0.95rem; color: #222; background: #f6f7f9; padding: 12px; border-radius: 6px; }
.wa-preview-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 12px; }
.wa-preview-close { position: absolute; right: 8px; top: 6px; background: transparent; border: 0; font-size: 20px; line-height: 1; }

/* Blog/article styles */
.blog-list .post-card { margin-bottom: 28px; border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%); padding-bottom: 18px; }
.blog-list .post-card h3 { margin-top: 0; }
.blog-list .post-card .post-meta { font-size: 0.9rem; }
.blog-article { line-height: 1.8; color: var(--default-color); }
.blog-article h3 { margin-top: 1.2rem; }
.ad-top-banner .ad-banner { background: linear-gradient(90deg,#f6f8fb,#ffffff); }
.sticky-sidebar { position: sticky; top: 96px; }
.read-more { font-weight:700; }

/* Post thumbnail sizing */
.blog-list .post-card img { width:100%; height:auto; max-height:360px; object-fit:cover; display:block; margin:0 auto 12px; }

/* Article hero image and content sizing */
.blog-article img { width:100%; height:auto; max-height:520px; object-fit:cover; display:block; margin:0 0 18px; }
.blog-article { font-size: 1rem; color: var(--default-color, #222); }
.blog-article p { margin-bottom: 1rem; }

/* Ensure blog section title centered like screenshot */
.blog-list .section-title { text-align: center; margin-bottom: 28px; }
.ad-banner-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(36, 40, 89, 0.08);
}
.header .logo img.brand-logo,
.footer .logo img.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-right: 10px;
}
.clients-section .section-title {
  padding-bottom: 24px;
  text-align: center;
}
.clients-section {
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.clients-marquee {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  min-width: max-content;
  animation: clientsMarquee 28s linear infinite;
  will-change: transform;
}
.clients-track:hover {
  animation-play-state: paused;
}
.clients-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9aa8ba;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}
.clients-track i {
  font-size: 1.05em;
}
@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.souvenir-bottom-cta {
  padding-top: 56px;
  padding-bottom: 24px;
}
.souvenir-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
}
.souvenir-cta-box h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  margin: 6px 0 8px;
}
.souvenir-cta-box p {
  margin: 0;
  max-width: 680px;
}
.souvenir-cta-box .cta-eyebrow {
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0;
}
.souvenir-cta-box .btn-primary {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 14px 22px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 800;
  white-space: nowrap;
}
.service-details .product-detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 50px;
  padding: 13px 22px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 800;
}
.service-details .product-detail-cta:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .whatsapp-float { right: 15px; bottom: 72px; }
  .product-body p { min-height: auto; }
  .header .btn-getstarted { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 767px) {
  .souvenir-cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }
  .souvenir-cta-box .btn-primary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .clients-marquee {
    padding-bottom: 10px;
  }
  .clients-track {
    gap: 32px;
    animation-duration: 20s;
  }
}

/* Layanan article content */
.layanan-article {
  padding-top: 48px;
  padding-bottom: 32px;
}
.layanan-article .article-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 2rem;
}
.layanan-article .article-block {
  margin-bottom: 2.2rem;
}
.layanan-article .article-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--heading-color);
}
.layanan-article .article-block h4 {
  font-size: 1.05rem;
  margin: 1rem 0 0.5rem;
}
.layanan-article .article-block p,
.layanan-article .article-block li {
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
.layanan-article .article-block ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.layanan-article .article-quote {
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 0 8px 8px 0;
}
.layanan-article .article-quote p {
  margin-bottom: 0.35rem;
  font-style: italic;
}
.layanan-article .article-quote cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  font-style: normal;
}
.layanan-article .article-stat {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.92rem;
}
.layanan-article .article-faq .faq-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.85rem;
  background: var(--surface-color);
}
.layanan-article .article-faq .faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.layanan-article .article-faq .faq-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-intro-metrics .mini-feature {
  height: 100%;
  text-align: center;
}
.about-intro-metrics .mini-feature i {
  margin-left: auto;
  margin-right: auto;
}
.page-features .features-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.page-features .mini-feature {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 1.35rem;
  height: 100%;
  transition: 0.3s;
}
.page-features .mini-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(36, 40, 89, 0.1);
}
.page-features .mini-feature i {
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}
.page-features .mini-feature h4 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}
.page-features .mini-feature p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 991px) {
  .page-features .features-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-features .features-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog and article pages */
.blog-page .page-title,
.article-page .page-title {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}
.blog-hero {
  padding: 82px 0 46px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 94%), var(--background-color));
}
.blog-hero .blog-eyebrow,
.article-header .blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.blog-hero h1,
.article-header h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.blog-hero p,
.article-header .article-excerpt {
  max-width: 760px;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 1.08rem;
  line-height: 1.75;
}
.blog-tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.blog-search {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  background: var(--surface-color);
  border-radius: 50px;
  padding: 12px 16px;
}
.blog-search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: var(--default-color);
}
.blog-filter {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-filter a,
.article-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 8px 13px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.88rem;
}
.blog-layout {
  padding-top: 46px;
  padding-bottom: 34px;
}
.featured-post {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 18px 52px rgba(36, 40, 89, 0.1);
}
.featured-post img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-post-content {
  padding: clamp(24px, 4vw, 42px);
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 0.92rem;
  margin: 12px 0 16px;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(36, 40, 89, 0.11);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card-body {
  padding: 22px;
}
.blog-card h3,
.featured-post h2 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  margin-bottom: 10px;
}
.blog-card h3 a,
.featured-post h2 a {
  color: var(--heading-color);
}
.blog-card p,
.featured-post p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 800;
}
.blog-sidebar {
  position: sticky;
  top: 112px;
}
.blog-widget {
  border-radius: 8px;
  padding: 22px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 12px 36px rgba(36, 40, 89, 0.06);
  margin-bottom: 20px;
}
.blog-widget h3 {
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.blog-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-widget li + li {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: 12px;
  padding-top: 12px;
}
.blog-widget a {
  color: var(--heading-color);
  font-weight: 700;
}
.article-header {
  padding: 34px 0 18px;
}
.article-page .article-header .container,
.article-page .article-layout > .container {
  max-width: 1040px;
}
.article-cover {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(36, 40, 89, 0.1);
  margin-top: 22px;
  max-width: 760px;
}
.article-cover img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
}
.article-layout {
  padding-top: 22px;
  padding-bottom: 28px;
}
.article-page .ad-banner-section {
  padding: 18px 16px 10px;
}
.article-page .ad-banner-section a {
  max-width: 1140px !important;
  margin: 20px auto !important;
  padding: 0 !important;
  text-align: center !important;
}
.article-body {
  font-size: 1.02rem;
  line-height: 1.86;
}
.article-body h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin: 34px 0 12px;
}
.article-body h3 {
  font-size: 1.18rem;
  margin: 26px 0 10px;
}
.article-body p,
.article-body li {
  color: color-mix(in srgb, var(--default-color), transparent 14%);
}
.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}
.article-note {
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 28px 0;
}
.toc-list a {
  display: block;
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-weight: 700;
}
.author-box {
  display: flex;
  gap: 14px;
  align-items: center;
}
.author-box img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.related-posts {
  padding-top: 18px;
}
@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    top: auto;
  }
  .featured-post img {
    min-height: 260px;
  }
}
@media (max-width: 575px) {
  .blog-hero,
  .article-header {
    padding-top: 42px;
  }
  .article-header h1 {
    font-size: 1.72rem;
    line-height: 1.18;
  }
  .article-cover {
    max-width: 100%;
  }
  .article-cover img {
    max-height: 240px;
  }
  .blog-tools {
    display: block;
  }
  .blog-filter {
    margin-top: 12px;
  }
  .blog-card-body,
  .blog-widget,
  .featured-post-content {
    padding: 18px;
  }
}

/* Compact header override — last rules to enforce smaller navbar/logo when needed */
.header .header-container { padding: 6px 12px; gap: 10px; }
.header .logo img { max-height: 28px; }
.header .logo h1 { font-size: 18px; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header .navmenu { min-width: 0; }
.navmenu ul { gap: 6px; }
.navmenu a, .navmenu a:focus { font-size: 13px !important; padding: 6px 8px !important; white-space: nowrap; }
.header .btn-getstarted { margin-left: auto !important; padding: 8px 14px !important; font-size: 13px !important; }

@media (max-width: 1199px) {
  .navmenu a, .navmenu a:focus { font-size: 14px !important; padding: 8px 10px !important; }
  .header .logo h1 { font-size: 16px; max-width: 120px; }
  .header .logo img { max-height: 30px; }
}

/* Typography adjustments: scale down headings and hero title site-wide */
h1 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); }
h2 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
h4 { font-size: 1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.9rem; }

/* Strong override for hero title so it doesn't appear too large */
.hero .hero-content .hero-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero .hero-content .hero-description { font-size: 1rem; max-width: 760px; }

@media (min-width: 1200px) {
  .hero .hero-content .hero-title { font-size: 2.6rem !important; }
}
@media (max-width: 992px) {
  .hero .hero-content .hero-title { font-size: 2.2rem !important; }
}
@media (max-width: 576px) {
  .hero .hero-content .hero-title { font-size: 1.8rem !important; margin-bottom: 14px; }
}

/* Ensure hero-line spans respect their max-width and remain centered */
.hero-title .hero-line { display: block; margin-left: auto; margin-right: auto; }
.hero-title .line-1 { max-width: 100%; }
.hero-title .line-2 { max-width: 72%; }
.hero-title .line-3 { max-width: 36%; }
.hero-title .line-2, .hero-title .line-3 { text-wrap: normal; }
.hero-title .hero-line { word-break: keep-all; }
