:root {
    color-scheme: light;
    --text: #0f172a;
    --muted: #475569;
    --primary: #0f172a;
    --primary-rgb: 15, 23, 42;
    --blue: #ff5a36;
    --blue-rgb: 255, 90, 54;
    --orange: #ff5a36;
    --orange-rgb: 255, 90, 54;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 90, 54, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #f0f7ff 100%) fixed;
}

main {
    width: 100%;
    position: relative;
}

/* Custom Scrollbar Track */
#custom-scrollbar-track {
    position: fixed;
    top: 0;
    right: 0;
    width: 6px;
    height: 100vh;
    z-index: 9999;
    background: transparent;
    pointer-events: none;
}

#custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    background: rgba(var(--primary-rgb), 0.4);
    border-radius: 3px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s ease, width 0.2s ease;
    min-height: 32px;
}

#custom-scrollbar-thumb:hover,
#custom-scrollbar-thumb.dragging {
    background: rgba(var(--primary-rgb), 0.75);
    width: 8px;
}

@media (max-width: 767px) {
    #custom-scrollbar-track {
        display: none;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 999;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

header.sticky-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

header .logo img {
    width: 100px;
    height: auto;
}

.nav-link-custom {
    text-decoration: none;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    padding: 0.7rem 0rem;
}

.nav-link-custom:hover {
    color: var(--orange);
}

/* Dropdown Megamenu */
.dropdown-megamenu {
    position: static !important;
}

.dropdown-menu-custom {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: none;
    z-index: 99;
}

.dropdown-menu-custom::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
}

.dropdown-megamenu:hover .dropdown-menu-custom {
    display: block;
}

.megamenu-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.megamenu-title:hover {
    color: var(--orange);
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-list li {
    margin-bottom: 0.6rem;
}

.megamenu-list a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.megamenu-list a:hover {
    color: var(--orange);
    padding-left: 4px;
}

/* "View All →" link in megamenu */
.megamenu-view-all {
    color: var(--orange) !important;
    font-weight: 500 !important;
    font-size: 0.82rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    margin-top: 0.25rem;
    padding-left: 0 !important;
}

.megamenu-view-all:hover {
    gap: 7px;
    padding-left: 0 !important;
}

/* Mobile drawer category labels */
.mobile-submenu-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 0.6rem 0 0.3rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    margin-top: 0.4rem;
    list-style: none;
}

.mobile-submenu-main-link {
    color: var(--orange) !important;
    font-weight: 600 !important;
}

.megamenu-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Buttons */
.btn-custom-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: #ffffff !important;
    padding: 0.75rem 1.6rem;
    border: 1.5px solid var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-custom-primary:hover {
    background-color: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
}

.btn-custom-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--text) !important;
    padding: 0.75rem 1.5rem;
    border: 1.5px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.btn-custom-secondary:hover {
    border-color: var(--orange);
    color: var(--orange) !important;
    background-color: rgba(var(--orange-rgb), 0.03);
    transform: translateY(-2px);
}

.nav-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

.nav-toggle-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
}

@media (max-width: 991px) {
    .nav-toggle-btn {
        display: block;
    }

    .header-nav-center {
        display: none;
    }

    .header-nav-right {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(var(--blue-rgb), 0.05), transparent 45%);
}

.hero-title-top {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title-top .accent-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title-top .accent-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(1);
    transform-origin: left;
}

.hero-title-sub {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.hero-paragraph {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 2.2rem;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stat-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    border-radius: 14px;
    padding: 0.65rem 1.25rem;
    box-shadow: 0 4px 18px rgba(var(--blue-rgb), 0.04);
    transition: transform 0.25s ease;
}

.hero-stat-pill:hover {
    transform: translateY(-2px);
}

.hero-stat-pill .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(var(--blue-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    font-weight: 400;
}

.hero-stat-pill .val {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1;
}

.hero-stat-pill .lbl {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.2;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-social-follow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-social-follow span {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(var(--blue-rgb), 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.hero-social-btn:hover {
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* SVG Orbit Visual */
.hero-orbit-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    width: 100%;
}

.orbit-svg-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.central-ai-node {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 0 10px rgba(var(--blue-rgb), 0.1), 0 0 0 20px rgba(var(--blue-rgb), 0.05);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: ai-node-glow 3s ease-in-out infinite;
}

@keyframes ai-node-glow {

    0%,
    100% {
        box-shadow: 0 0 0 10px rgba(var(--blue-rgb), 0.1), 0 0 0 20px rgba(var(--blue-rgb), 0.05);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(var(--blue-rgb), 0.15), 0 0 0 30px rgba(var(--blue-rgb), 0.08);
    }
}

.central-ai-node svg {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    fill: #ffffff;
}

.workflow-node-item {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid rgba(var(--blue-rgb), 0.12);
    box-shadow: 0 8px 24px rgba(var(--blue-rgb), 0.06);
    padding: 10px 14px;
    min-width: 145px;
    z-index: 5;
    transition: transform 0.25s ease;
}

.workflow-node-item:hover {
    transform: scale(1.05) translateY(-2px);
}

.workflow-node-item .node-icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.workflow-node-item .node-title-text {
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 2px;
}

.workflow-node-item .node-desc-text {
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.3;
}

/* Positioning Nodes */
.workflow-node-item.n-top {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.workflow-node-item.n-top:hover {
    transform: translateX(-50%) scale(1.05) translateY(-2px);
}

.workflow-node-item.n-right {
    top: 32%;
    right: 0;
}

.workflow-node-item.n-bottom {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.workflow-node-item.n-bottom:hover {
    transform: translateX(-50%) scale(1.05) translateY(-2px);
}

.workflow-node-item.n-left {
    top: 32%;
    left: 0;
}

/* Floating Metric Badges */
.floating-badge-metric {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(var(--blue-rgb), 0.12);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    z-index: 8;
    animation: floating-badge-animation 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-badge-metric.b-a {
    top: 8%;
    right: 2%;
    animation-delay: 0s;
}

.floating-badge-metric.b-b {
    bottom: 12%;
    left: 3%;
    animation-delay: 1.5s;
}

.floating-badge-metric.b-c {
    bottom: 35%;
    right: 2%;
    animation-delay: 0.8s;
}

@keyframes floating-badge-animation {

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

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

.floating-badge-metric .b-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.floating-badge-metric .b-val {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1;
}

.floating-badge-metric .b-lbl {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 1px;
}

@media (max-width: 1200px) {
    .hero-orbit-container {
        min-height: 480px;
    }

    .orbit-svg-element {
        max-width: 400px;
    }

    .workflow-node-item {
        min-width: 120px;
        padding: 8px 10px;
    }
}

@media (max-width: 767px) {
    .hero-orbit-container {
        min-height: 420px;
        margin-top: 2rem;
    }

    .orbit-svg-element {
        max-width: 320px;
    }

    .workflow-node-item {
        min-width: 100px;
        padding: 6px 8px;
    }

    .floating-badge-metric {
        display: none;
    }
}

/* Client Brand Slider */
.clients-section-home {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.3);
}

.clients-title-text {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.client-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.client-logo-img {
    max-height: 42px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.client-logo-img:hover {
    filter: grayscale(0%);
    opacity: 0.9;
}

/* Services Grid Section */
.services-section-home {
    background: transparent;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.services-sec-header {
    margin-bottom: 4rem;
}

.services-sec-sub {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.services-sec-sub hr {
    width: 40px;
    border: 2px solid var(--orange);
    opacity: 1;
    margin: 0;
}

.services-sec-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    margin: 0;
}

.service-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.service-card-img-wrapper {
    width: 100%;
    height: clamp(160px, 22vw, 210px);
    overflow: hidden;
    position: relative;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-content {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-glass-card:hover .service-card-img-wrapper img {
    transform: scale(1.06);
}

.service-glass-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.service-glass-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 0;
}

.service-glass-card .service-anchor {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* AI Automation Banner Section */
.ai-banner-section {
    position: relative;
    background: transparent;
    z-index: 1;
    padding-top: 4rem;
}

.ai-banner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
}

.ai-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--blue-rgb), 0.05) 100%);
    z-index: -1;
}

.ai-banner-sub {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.ai-banner-sub hr {
    width: 40px;
    border: 2px solid var(--blue);
    opacity: 1;
    margin: 0;
}

.ai-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.ai-banner-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
}

.ai-banner-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.ai-banner-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .ai-banner-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .ai-banner-sub {
        justify-content: center;
    }

    .ai-banner-image-wrapper {
        margin-top: 2rem;
    }
}

/* About Us Section */
.about-section-home {
    background: transparent;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-sub-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.about-sub-label hr {
    width: 40px;
    border: 2px solid var(--blue);
    opacity: 1;
    margin: 0;
}

.about-title-text {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-desc-p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Stats Numbers Counter Section */
.stats-counter-section {
    background: transparent;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.counter-card {
    text-align: center;
    padding: 1rem;
}

.counter-number {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Recent Works Slider Section */
.works-section-home {
    background: transparent;
    position: relative;
    z-index: 1;
}

.works-swiper-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.works-swiper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.works-image-box {
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    position: relative;
}

.works-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.works-swiper-card:hover .works-image-box img {
    transform: scale(1.05);
}

.works-info-box {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    flex-grow: 1;
}

.works-info-box h4 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.works-info-box h4 a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s ease;
}

.works-info-box h4 a:hover {
    color: var(--primary);
}

.works-tag {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.works-swiper-card .works-cover-anchor {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.15);
}

.swiper-nav-btn:hover {
    background-color: var(--blue);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section-home {
    background: transparent;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.testimonial-glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
}

.testimonial-quote-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
    border-left: 4px solid var(--orange);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.testimonial-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-details h5 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.testimonial-user-details span {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
}

/* Footer Section */
footer {
    background: #f4f5fd;
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: #475569;
}

.footer-widget-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.8rem;
    margin-top: 1rem;
}

.footer-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: #475569;
}

.footer-contact-info-item a {
    text-decoration: none;
    color: #475569;
    transition: color 0.2s ease;
}

.footer-contact-info-item a:hover {
    color: var(--orange);
}

.footer-contact-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.footer-social-btn-round {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.footer-social-btn-round:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.footer-title-header {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.8rem;
    color: #0f172a;
    position: relative;
    padding-bottom: 0.6rem;
}

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

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li {
    display: flex;
    align-items: center;
}

.footer-links-list a {
    text-decoration: none;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-list a::before {
    content: "›";
    color: var(--primary);
    margin-right: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--orange);
}

.footer-links-list a:hover::before {
    transform: translateX(3px);
}

/* Presence Styles */
.footer-presence-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-presence-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
}

.footer-presence-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-presence-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none;
    margin-top: 0.8rem;
    transition: color 0.2s ease;
}

.footer-presence-link:hover {
    color: var(--orange) !important;
}

/* Trust Badges Row */
.footer-badges-row {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 2.2rem 0;
    margin: 3.5rem 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-badge-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-badge-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.footer-badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.footer-badge-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.footer-badge-lbl {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.footer-badge-stars {
    display: flex;
    gap: 2px;
    margin-top: 1px;
}

.footer-badge-stars svg {
    width: 11px;
    height: 11px;
    fill: #eab308;
    color: #eab308;
}

.footer-divider-line {
    display: none;
}

/* Bottom Footer */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-copyright-text {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.footer-bottom-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-nav a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.82rem;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-bottom-nav a:hover {
    color: var(--primary);
}

@media (max-width: 1199px) {
    .footer-badges-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    footer {
        padding-top: 4rem;
    }
    
    .footer-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-badges-row {
        grid-template-columns: 1fr;
    }
}

/* Modals Overlays & Dialogs */
.modal-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.8rem;
}

.modal-overlay-custom.active {
    display: flex !important;
    opacity: 1;
}

.modal-dialog-custom {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    margin: auto;
    overflow-y: auto;
}

.modal-overlay-custom.active .modal-dialog-custom {
    transform: scale(1) translateY(0);
}

.modal-close-btn-custom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    z-index: 10;
}

.modal-close-btn-custom:hover {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-title-header {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: var(--text);
}

.modal-form-custom-control {
    width: 100%;
    padding: 0.75rem 1.1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.modal-form-custom-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea.modal-form-custom-control {
    min-height: 100px;
    resize: vertical;
}

.form-check-label-custom {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
    cursor: pointer;
}

/* Sticky WhatsApp & Back To Top */
.btn-whatsapp-pulse-fixed {
    background: #25d366;
    color: #ffffff;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse-animation 1.5s infinite;
    z-index: 99;
    transition: transform 0.2s ease;
}

.btn-whatsapp-pulse-fixed:hover {
    transform: scale(1.08);
    color: #ffffff;
}

@keyframes whatsapp-pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    80% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.btn-to-top-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.btn-to-top-fixed:hover {
    background-color: #16266b;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile Drawer Menu styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-drawer-nav-list a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 400;
    display: block;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: color 0.2s ease;
}

.mobile-drawer-nav-list a:hover {
    color: var(--orange);
}

.mobile-submenu-list {
    list-style: none;
    padding-left: 1.2rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-submenu-list a {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--muted);
    border: none;
    padding: 0.3rem 0;
}

.mobile-drawer-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-drawer-social-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

/* Swiper Pagination and Input Focus Overrides */
.swiper-pagination-bullet-active {
    background: var(--orange) !important;
}

.modal-form-custom-control:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 54, 0.15) !important;
}

form button[type="submit"] {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    box-shadow: 0 4px 14px rgba(255, 90, 54, 0.25) !important;
}

form button[type="submit"]:hover {
    background-color: #e04422 !important;
    border-color: #e04422 !important;
}

/* ==========================================
   Inner Service Pages Styles
   ========================================== */
.inner-hero-section {
    position: relative;
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #f0f7ff 100%);
    color: var(--text);
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

/* Soft ambient blobs for light mode */
.inner-hero-section::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -5%;
    width: 55%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(255, 90, 54, 0.06) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.inner-hero-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 55%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.inner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 1;
}

.inner-hero-badge a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.inner-hero-badge a:hover {
    color: var(--orange);
}

.inner-hero-badge svg {
    opacity: 0.35;
    stroke: var(--text);
}

.inner-hero-badge span.active {
    color: var(--orange);
    font-weight: 600;
}

.inner-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.inner-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.inner-hero-badge,
.inner-title,
.inner-subtitle {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.inner-hero-badge {
    animation-delay: 0.05s;
}

.inner-title {
    animation-delay: 0.15s;
}

.inner-subtitle {
    animation-delay: 0.25s;
}

/* Service Detail Layout */
.service-details-section {
    padding: 6rem 0;
}

.details-content-wrapper {
    padding-right: 1.5rem;
}

.details-content-wrapper h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.details-content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.8rem;
}

.details-main-img-box {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.details-main-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Glass Feature Cards Grid */
.glass-features-grid {
    margin-top: 3.5rem;
}

.glass-feature-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 90, 54, 0.06);
}

.glass-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.glass-feature-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--muted);
}

/* Sidebar styling */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.sidebar-widget h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.sidebar-menu-list a:hover,
.sidebar-menu-list a.active {
    background: var(--text);
    color: #ffffff;
    border-color: var(--text);
    transform: translateX(5px);
}

.sidebar-menu-list a svg {
    transition: transform 0.3s ease;
}

.sidebar-menu-list a:hover svg,
.sidebar-menu-list a.active svg {
    transform: translateX(3px);
    stroke: #ffffff;
}

/* Call to Action Widget */
.cta-sidebar-widget {
    background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
}

.cta-sidebar-widget h4 {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.3;
}

.cta-sidebar-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

/* Sidebar Lead Form Widget */
.sidebar-lead-widget {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.sidebar-lead-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.sidebar-lead-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

.sidebar-form-group {
    margin-bottom: 1rem;
}

.sidebar-form-input,
.sidebar-form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    font-size: 0.92rem;
    color: var(--text);
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.sidebar-form-input:focus,
.sidebar-form-textarea:focus {
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 90, 54, 0.15);
}

.sidebar-form-input::placeholder,
.sidebar-form-textarea::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 90px;
}

.sidebar-submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 14px;
    letter-spacing: 0.03em;
    margin-top: 0.4rem;
}

.sidebar-form-success {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
}

.sidebar-form-success h5 {
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.sidebar-form-success p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.sidebar-form-error {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sidebar-whatsapp-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    text-align: center;
}

.sidebar-whatsapp-alt span {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.sidebar-whatsapp-alt a {
    display: inline-flex;
    align-items: center;
    color: #25d366;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sidebar-whatsapp-alt a:hover {
    transform: scale(1.03);
    color: #20ba59;
}

.tech-stack-section {
    margin-top: 4rem;
}

.tech-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.tech-badge {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

@media (max-width: 991px) {
    .details-content-wrapper {
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .inner-hero-section {
        padding: 8rem 0 4rem;
    }
}

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

.blog-section {
    padding: 4rem 0 0rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Featured (first card wide) */
.blog-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.09);
}

.blog-card-featured .blog-card-img-wrap {
    overflow: hidden;
    height: 360px;
}

.blog-card-featured .blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.blog-card-featured:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-card-featured .blog-card-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Regular Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card .blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card .blog-card-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.45) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog-card:hover .blog-card-img-wrap::after {
    opacity: 0.65;
}

.blog-card .blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.08) rotate(1deg);
}

.blog-card .blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Body Shared */
.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.3rem .8rem;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-category {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 90, 54, 0.35);
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1rem * 1.35 * 2);
    transition: color 0.2s ease;
}

.blog-card-title:hover {
    color: var(--orange);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    margin-top: auto;
    padding-top: 1rem;
    transition: gap 0.2s ease;
}

.blog-read-link:hover {
    gap: 0.7rem;
    color: var(--orange);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.sidebar-blog-widget {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
}

.sidebar-blog-widget h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

/* Popular Posts */
.popular-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item:hover {
    opacity: 0.75;
}

.popular-post-thumb {
    width: 64px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.popular-post-date {
    font-size: 0.72rem;
    color: var(--muted);
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 90, 54, 0.04);
}

/* ---- STAY UPDATED FORM ---- */
.stay-updated-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stay-updated-inner {
    background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%);
    border-radius: 36px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stay-updated-inner::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -5%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.stay-updated-inner::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.stay-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 90, 54, 0.15);
    border: 1px solid rgba(255, 90, 54, 0.25);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff8a6f;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stay-updated-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stay-updated-title span {
    color: var(--orange);
}

.stay-updated-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.stay-updated-form {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.35rem;
    backdrop-filter: blur(10px);
}

.stay-updated-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.92rem;
    color: #fff;
    font-family: inherit;
}

.stay-updated-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.stay-updated-submit {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.stay-updated-submit:hover {
    background: #e04a27;
    transform: scale(1.03);
}

.stay-updated-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.stay-updated-success {
    display: none;
    color: #86efac;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.page-btn.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

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

    .blog-card-featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-img-wrap {
        height: 260px;
    }

    .blog-card-featured .blog-card-body {
        padding: 2rem;
    }

    .stay-updated-inner {
        padding: 3.5rem 2rem;
    }
}

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

    .blog-card-featured {
        grid-column: span 1;
    }

    .stay-updated-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .stay-updated-submit {
        border-radius: 12px;
    }
}

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

/* Article Hero */
.blog-detail-hero {
    padding: 7rem 0 0;
    position: relative;
}

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

.blog-detail-category {
    display: inline-flex;
    padding: 0.3rem 1rem;
    background: rgba(255, 90, 54, 0.08);
    border: 1px solid rgba(255, 90, 54, 0.18);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1.2rem;
}

.blog-detail-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--text);
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.blog-detail-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.blog-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ff8a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.blog-author-info {}

.blog-author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.blog-author-role {
    font-size: 0.75rem;
    color: var(--muted);
}

.blog-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(15, 23, 42, 0.1);
}

.blog-meta-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.blog-hero-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top;
    border-radius: 28px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ---- AUDIO PLAYER ---- */
.audio-player-bar {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.1rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.audio-play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--text);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.audio-play-btn:hover {
    background: var(--orange);
    transform: scale(1.08);
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.audio-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.audio-title-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-progress-wrap {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.audio-progress-track {
    width: 100%;
    height: 5px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff8a6f);
    border-radius: 100px;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
}

.audio-speed-btn {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.audio-speed-btn:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* Blog Layout */
.blog-detail-section {
    padding: 2rem 0 0;
}

/* Table of Contents */
.toc-widget {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    cursor: pointer;
    user-select: none;
}

.toc-header h4 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-toggle-icon {
    transition: transform 0.25s ease;
    color: var(--muted);
}

.toc-toggle-icon.open {
    transform: rotate(180deg);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toc-list li a {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.83rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    line-height: 1.4;
    border-left: 2px solid transparent;
}

.toc-list li a:hover {
    color: var(--orange);
    background: rgba(255, 90, 54, 0.04);
}

.toc-list li a.toc-active {
    color: var(--orange);
    font-weight: 600;
    border-left-color: var(--orange);
    background: rgba(255, 90, 54, 0.05);
}

.toc-list li.toc-h3 a {
    padding-left: 1.4rem;
    font-size: 0.79rem;
}

.toc-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 1px;
}

.toc-reading-progress {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.toc-progress-label {
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
}

.toc-progress-bar {
    height: 4px;
    background: rgba(15, 23, 42, 0.07);
    border-radius: 100px;
    overflow: hidden;
}

.toc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff8a6f);
    border-radius: 100px;
    width: 0%;
    transition: width 0.2s ease;
}

/* Share Widget */
.share-widget {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
}

.share-widget h4 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 100%;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff;
}

.share-whatsapp {
    background: #25D366;
}

.share-twitter {
    background: #000000;
}

.share-linkedin {
    background: #0077B5;
}

.share-facebook {
    background: #1877F2;
}

.share-copy {
    grid-column: span 2;
    background: rgba(15, 23, 42, 0.06);
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    color: var(--text);
    font-weight: 600;
    font-size: 0.78rem;
}

.share-copy:hover {
    background: var(--text);
    color: #fff;
}

/* Blog content typography */
.blog-article-body h2 {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0rem 0 1.2rem;
    scroll-margin-top: 120px;
}

.blog-article-body h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin: 2rem 0 0.9rem;
    scroll-margin-top: 120px;
}

.blog-article-body p {
    font-size: 1.02rem;
    line-height: 1.82;
    color: #374151;
    margin-bottom: 1.5rem;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 1rem 0 1.8rem;
    padding-left: 1.5rem;
}

.blog-article-body li {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 0.6rem;
}

.blog-callout {
    background: rgba(255, 90, 54, 0.05);
    border-left: 4px solid var(--orange);
    border-radius: 0 16px 16px 0;
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
}

.blog-callout p {
    margin: 0;
    font-style: italic;
    color: var(--text);
    font-weight: 500;
}

.blog-tip-box {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.blog-tip-box strong {
    color: var(--orange);
    display: block;
    margin-bottom: 0.4rem;
}

.blog-tip-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Author Card */
.author-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 4rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text), #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.author-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-card-role {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
}

.author-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Sticky share (desktop) */
.floating-share {
    position: fixed;
    left: max(10px, calc(50% - 740px));
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-share.visible {
    opacity: 1;
    pointer-events: all;
}

.floating-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: #fff;
    text-decoration: none;
}

.floating-share-btn:hover {
    transform: scale(1.12);
    color: #fff;
}

@media (max-width: 1300px) {
    .floating-share {
        display: none;
    }
}

@media (max-width: 991px) {
    .toc-widget {
        position: static;
    }

    .author-card {
        flex-direction: column;
        gap: 1.2rem;
    }

    .blog-hero-img {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .audio-player-bar {
        flex-wrap: wrap;
    }

    .share-btns-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-detail-meta-row {
        gap: 0.8rem;
    }
}

/* ==========================================================================
   PORTFOLIO PAGE – DEDICATED STYLES
   ========================================================================== */

/* Hero Stats Row */
.portfolio-stats-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.portfolio-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.portfolio-stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.portfolio-stat-num span {
    color: var(--orange);
}

.portfolio-stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Filter Tabs */
.portfolio-section {
    padding: 6rem 0 8rem;
}

.portfolio-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-right: 0.5rem;
}

.portfolio-filter-btn {
    padding: 0.5rem 1.3rem;
    border-radius: 100px;
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.portfolio-filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 90, 54, 0.04);
}

.portfolio-filter-btn.active {
    background: var(--text);
    color: #ffffff;
    border-color: var(--text);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.portfolio-card:nth-child(1) {
    animation-delay: 0.05s;
}

.portfolio-card:nth-child(2) {
    animation-delay: 0.10s;
}

.portfolio-card:nth-child(3) {
    animation-delay: 0.15s;
}

.portfolio-card:nth-child(4) {
    animation-delay: 0.20s;
}

.portfolio-card:nth-child(5) {
    animation-delay: 0.25s;
}

.portfolio-card:nth-child(6) {
    animation-delay: 0.30s;
}

.portfolio-card:nth-child(7) {
    animation-delay: 0.35s;
}

.portfolio-card:nth-child(8) {
    animation-delay: 0.40s;
}

.portfolio-card:nth-child(9) {
    animation-delay: 0.45s;
}

.portfolio-card:nth-child(10) {
    animation-delay: 0.50s;
}

.portfolio-card:nth-child(11) {
    animation-delay: 0.55s;
}

.portfolio-card:nth-child(12) {
    animation-delay: 0.60s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.10);
}

/* Make some cards span 2 columns for visual variety */
.portfolio-card.wide {
    grid-column: span 2;
}

.portfolio-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card.wide .portfolio-card-img {
    height: 300px;
}

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

/* Overlay */
.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.15) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

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

.portfolio-card-overlay-content {
    transform: translateY(12px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-overlay-content {
    transform: translateY(0);
}

.portfolio-card-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.portfolio-card-overlay a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* Card Bottom Info */
.portfolio-card-info {
    padding: 1.4rem 1.6rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portfolio-card-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.portfolio-card-info p {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0.2rem 0 0;
    font-weight: 400;
}

.portfolio-card-tag {
    display: inline-flex;
    padding: 0.3rem 0.9rem;
    background: rgba(255, 90, 54, 0.08);
    border: 1px solid rgba(255, 90, 54, 0.15);
    border-radius: 100px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hidden state for filter */
.portfolio-card.hidden {
    display: none;
}

/* CTA Section */
.portfolio-cta-section {
    background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-cta-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.portfolio-cta-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 55%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.portfolio-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.portfolio-cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-card.wide {
        grid-column: span 1;
    }

    .portfolio-card.wide .portfolio-card-img {
        height: 260px;
    }
}

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

    .portfolio-stats-row {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 6rem 0 8rem;
}

/* Info Cards */
.contact-info-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    color: inherit;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 90, 54, 0.1), rgba(255, 90, 54, 0.05));
    border: 1px solid rgba(255, 90, 54, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.contact-info-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form-group {
    margin-bottom: 1.4rem;
}

.contact-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    font-size: 0.95rem;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    -webkit-appearance: none;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(100, 116, 139, 0.7);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    margin-top: 1.5rem;
}

.form-success-msg h4 {
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-success-msg p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

.form-error-msg {
    display: none;
    text-align: center;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
    color: #dc2626;
    font-size: 0.88rem;
    margin-top: 1rem;
}

/* Map Section */
.contact-map-section {
    padding: 0 0 6rem;
}

.contact-map-wrap {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 420px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Hours Card */
.hours-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 2rem;
}

.hours-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 0.88rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text);
    font-weight: 500;
}

.hours-time {
    color: var(--muted);
}

.hours-closed {
    color: #ef4444;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 575px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Story Section */
.about-story-section {
    padding: 7rem 0 5rem;
}

.about-story-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.about-story-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.about-story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.8rem;
}

.about-story-title span {
    color: var(--orange);
}

.about-story-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-story-img-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-story-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-story-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.about-story-badge-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-story-badge-num span {
    color: var(--orange);
}

.about-story-badge-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
    max-width: 100px;
}

/* Values Section */
.about-values-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.section-label-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.section-label-tag::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-big-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: left;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 90, 54, 0.1) 0%, rgba(255, 90, 54, 0.06) 100%);
    border: 1px solid rgba(255, 90, 54, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    padding: 5rem 0;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 90, 54, 0.07);
}

.about-stat-card-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.about-stat-card-num span {
    color: var(--orange);
}

.about-stat-card-label {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Clients Strip */
.about-clients-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.client-logo-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 2/1;
}

.client-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.client-logo-item img {
    max-height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65);
    transition: filter 0.3s ease;
}

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

/* CTA Banner */
.about-cta-banner {
    background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -5%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.09) 0%, transparent 65%);
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.about-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-story-img-wrap img {
        height: 360px;
    }
}

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

/* Custom styles for select country code without browser arrows */
select.no-arrow {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding-right: 0.5rem !important;
    text-align: center;
    cursor: pointer;
}
select.no-arrow::-ms-expand {
    display: none !important;
}

/* Sticky Sidebar layout constraints */
@media (min-width: 992px) {
    .service-details-section .col-lg-4,
    .blog-section .col-lg-4,
    .col-lg-4:has(.details-sidebar),
    .col-lg-4:has(.blog-sidebar) {
        position: relative;
    }
}
