
:root {
    /* Dark Theme Colors */
    --dark-bg-primary: var(--color-rank-5);
    --dark-bg-secondary: var(--color-rank-7);
    --dark-bg-tertiary: var(--color-rank-11);
    --text-primary: var(--color-rank-1);
    --text-secondary: var(--color-rank-2);
    --text-tertiary: var(--color-rank-8);
    --text-muted: var(--color-rank-4);
    
    /* Accent Colors */
    --accent-blue: var(--color-rank-3);
    --accent-purple: var(--color-rank-6);
    --accent-indigo: var(--color-rank-9);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-rank-3) 0%, var(--color-rank-6) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-rank-9) 0%, var(--color-rank-3) 100%);
    
    /* Glass Effects */
    --glass-bg-dark: var(--color-rank-38);
    --glass-border-dark: var(--color-rank-17);
    --glass-shadow-dark: 0 8px 32px 0 var(--color-rank-27);
    
    /* Legacy support */
    --primary-color: var(--color-rank-3);
    --accent-color: var(--color-rank-3);
    --accent-secondary: var(--color-rank-6);
    --dark-bg: var(--color-rank-5);
    --dark-secondary: var(--color-rank-7);
    --text-dark: var(--color-rank-1);
    --text-light: var(--color-rank-1);
    --text-gray: var(--color-rank-8);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    padding-top: 76px;
    background: var(--dark-bg-primary);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: var(--color-rank-43) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
    border-bottom: 1px solid var(--color-rank-17);
}

.navbar.scrolled {
    background: var(--color-rank-39) !important;
    box-shadow: 0 4px 30px var(--color-rank-40);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    color: var(--text-secondary) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-blue) !important;
}

.dropdown-menu {
    background: var(--color-rank-33);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    box-shadow: 0 8px 32px var(--color-rank-27);
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Hero Section - Radically New Slider Style */
.hero-modern {
    position: relative;
    padding: 100px 0 80px;
    background: radial-gradient(circle at top left, var(--color-rank-41) 0%, var(--dark-bg-primary) 40%, var(--dark-bg-secondary) 100%);
    overflow: hidden;
}



/* .hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--color-rank-38), transparent 40%),
        radial-gradient(circle at 80% 20%, var(--accent-indigo), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
} */

/* Orbital background layers */
.hero-orbit-layer {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--color-rank-6);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.hero-orbit-layer--one {
    width: 680px;
    height: 680px;
    top: -120px;
    right: -220px;
    animation: hero-orbit-spin 38s linear infinite;
}

.hero-orbit-layer--two {
    width: 520px;
    height: 520px;
    bottom: -180px;
    left: -120px;
    animation: hero-orbit-spin 28s linear infinite reverse;
}

@keyframes hero-orbit-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Slider Container */
.hero-slider-modern {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-slider-modern .swiper-wrapper {
    padding-bottom: 60px;
}

.hero-slider-modern .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-slide-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(135deg, var(--dark-bg-primary), var(--dark-bg-secondary));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid var(--color-rank-17);
    box-shadow: 0 8px 32px var(--color-rank-19);
    padding: 32px 32px 32px 32px;
    position: relative;
    overflow: hidden;
}

.hero-slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-blue) 0%, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-slide-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    z-index: 1;
}

/* Content Area */
.hero-content-modern {
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--color-rank-38);
    border: 1px solid var(--glass-border-dark);
    box-shadow: var(--glass-shadow-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gradient-primary);
    box-shadow:
        0 0 0 4px var(--color-rank-32),
        0 0 18px var(--accent-blue);
}

.hero-content-modern h1 {
    font-size: clamp(2.4rem, 2.8vw + 1.8rem, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0;
    background: linear-gradient(120deg, #e5e7eb, #f9fafb, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-modern p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 34rem;
    color: var(--text-secondary);
    margin: 0;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
}

.hero-cta-row .btn.btn-primary {
    padding-inline: 2.4rem;
    padding-block: 0.95rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-secondary-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 16rem;
}

.hero-meta-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid var(--glass-border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-meta-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gradient-secondary);
    box-shadow: 0 0 18px var(--accent-indigo);
}

/* Image Area */
.hero-image-modern {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    padding: 6px;
    background: var(--gradient-primary);
    box-shadow: var(--glass-shadow-dark);
    transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
    transform-origin: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-image-frame:hover {
    transform: perspective(1200px) rotateY(-3deg) rotateX(0deg) translateY(-4px);
    box-shadow: var(--glass-shadow-dark);
}

.hero-image-glow {
    position: absolute;
    inset: 16%;
    background: radial-gradient(circle at 30% 0%, var(--color-rank-47) 0%, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.9;
    pointer-events: none;
}

.hero-image-mask {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 0%, var(--dark-bg-primary) 0%, transparent 65%);
}

.hero-image-mask img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-image-mask img {
    transform: scale(1.06);
}

/* Hero Pagination - bottom centered pills */
.hero-pagination {
    position: absolute;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-rank-34);
    opacity: 1;
    cursor: pointer;
    margin: 0 !important;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.hero-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 38px;
    background: transparent;
    box-shadow: 0 0 0 1px var(--color-rank-25);
}

.hero-pagination .swiper-pagination-bullet-active::before {
    opacity: 1;
}

/* Flow Diagram */
.flow-diagram {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow-step {
    background: var(--color-rank-21);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--color-rank-19);
}

.flow-step:hover {
    background: var(--color-rank-33);
    transform: translateX(5px);
    border-color: var(--color-rank-18);
}

.flow-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.flow-step-icon.step-1 {
    background: var(--gradient-primary);
}

.flow-step-icon.step-2 {
    background: var(--gradient-secondary);
}

.flow-step-icon.step-3 {
    background: linear-gradient(135deg, var(--color-rank-3) 0%, var(--color-rank-12) 100%);
}

.flow-step-icon.step-4 {
    background: linear-gradient(135deg, var(--color-rank-13) 0%, var(--color-rank-14) 100%);
}

.flow-step-content {
    flex: 1;
}

.flow-step-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.flow-step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.flow-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--color-rank-18);
    margin-top: 0.5rem;
}

/* Recognition Section */
.recognition-section {
    padding: 60px 0;
    background: var(--dark-bg-secondary);
    position: relative;
}

.recognition-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.recognition-item {
    text-align: center;
    color: var(--text-secondary);
}

.recognition-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.recognition-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recognition-media {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.recognition-media span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Metrics Section */
.metrics-section {
    background: var(--color-rank-31);
    padding: 40px 0;
    border-top: 1px solid var(--color-rank-17);
}

.metrics-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.metric-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-company {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--color-rank-18);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-rank-23);
    color: white;
}

.btn-outline-light {
    border: 2px solid var(--color-rank-29);
    color: var(--text-primary);
    background: transparent;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background: var(--color-rank-17);
    border-color: var(--color-rank-34);
    color: var(--text-primary);
}

/* Sections */
section {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.bg-light {
    background: var(--dark-bg-secondary) !important;
}

/* Cards */
.service-card,
.product-card,
.blog-card,
.dark-card {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 32px var(--color-rank-19);
}

.service-card:hover,
.product-card:hover,
.blog-card:hover,
.dark-card:hover {
    transform: translateY(-8px);
    background: var(--color-rank-21);
    box-shadow: 0 12px 40px var(--color-rank-27);
    border-color: var(--color-rank-18);
}

.service-card img,
.product-card img,
.blog-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-card .card-body,
.product-card .card-body,
.blog-card .card-body {
    padding: 1.5rem;
}

.service-card h5,
.product-card h5,
.blog-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.blog-card h5 a,
.blog-card .card-title a,
.blog-card .card-title {
    color: var(--text-primary) !important;
}

.blog-card h5 a:hover,
.blog-card .card-title a:hover {
    color: var(--accent-blue) !important;
}

.service-card h5 a,
.service-card .card-title a,
.service-card .card-title {
    color: var(--text-primary) !important;
}

.service-card h5 a:hover,
.service-card .card-title a:hover {
    color: var(--accent-blue) !important;
}

.product-card h5 a,
.product-card .card-title a {
    color: var(--text-primary) !important;
}

.service-card p,
.product-card p,
.blog-card p {
    color: var(--text-secondary);
}

.service-card a,
.product-card a,
.blog-card a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
}

.service-card a:hover,
.product-card a:hover,
.blog-card a:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
    color: white;
}

.blog-card .btn-link {
    color: var(--accent-blue) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    border: none;
    transition: all 0.4s ease;
}

.blog-card .btn-link:hover {
    color: var(--accent-purple) !important;
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px var(--color-rank-22);
    min-width: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background: var(--color-rank-24);
    border-color: var(--color-rank-18);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--color-rank-19);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--color-rank-35);
    color: white;
    box-shadow: 0 6px 20px var(--color-rank-26);
    font-weight: 600;
}

.pagination .page-item.active .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-rank-23);
}

.pagination .page-item.disabled .page-link {
    background: var(--color-rank-36);
    border-color: var(--color-rank-31);
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: 0 4px 12px var(--color-rank-22);
}

/* Client Logos */
.client-logo {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 80px;
    object-fit: contain;
}

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

/* Reference Logo Cards - 1:1 Aspect Ratio */
.reference-logo-card {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 16px;
    padding: 1.5rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px var(--color-rank-19);
    position: relative;
    overflow: hidden;
}

.reference-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--color-rank-47) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.reference-logo-card:hover {
    transform: translateY(-8px);
    background: var(--color-rank-24);
    border-color: var(--color-rank-26);
    box-shadow: 0 12px 40px var(--color-rank-25);
}

.reference-logo-card:hover::before {
    opacity: 1;
}

.reference-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.7;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 0.5rem;
}

.reference-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--dark-bg-primary);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--color-rank-27);
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Gallery Categories */
.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-category-link {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px var(--color-rank-22);
    display: inline-block;
}

.gallery-category-link:hover {
    background: var(--color-rank-24);
    border-color: var(--color-rank-18);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--color-rank-19);
}

.gallery-category-link.active {
    background: var(--gradient-primary);
    border-color: var(--color-rank-35);
    color: white;
    font-weight: 600;
    box-shadow: 0 6px 20px var(--color-rank-26);
}

.gallery-category-link.active:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-rank-23);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--color-rank-17);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-rank-48);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    background: var(--color-rank-38);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 12px;
    transition: all 0.4s ease;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 12px var(--color-rank-22);
}

.faq-accordion .accordion-button:hover {
    background: var(--color-rank-24);
    border-color: var(--color-rank-18);
    box-shadow: 0 6px 18px var(--color-rank-19);
}

.faq-accordion .accordion-button:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem var(--color-rank-32);
    outline: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    backdrop-filter: blur(20px);
    color: white;
    border-color: var(--color-rank-35);
    box-shadow: 0 6px 20px var(--color-rank-26);
    border-radius: 12px 12px 0 0;
}

.faq-accordion .accordion-button:not(.collapsed):hover {
    box-shadow: 0 8px 25px var(--color-rank-23);
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.faq-accordion .accordion-collapse {
    border: none;
}

.faq-accordion .accordion-body {
    background: var(--color-rank-49);
    backdrop-filter: blur(20px);
    color: var(--text-secondary);
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--color-rank-17);
    border-top: none;
    padding: 1.5rem;
    line-height: 1.8;
    box-shadow: 0 4px 12px var(--color-rank-22);
}

/* CTA Section */
.cta-section {
    background: var(--color-rank-21);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-rank-17);
    border-bottom: 1px solid var(--color-rank-17);
    color: white;
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--color-rank-28) 0%, transparent 70%);
    z-index: 0;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 100%);
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-rank-17);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--color-rank-30) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, var(--color-rank-41) 0%, transparent 50%);
    z-index: 0;
    animation: bannerGradient 15s ease-in-out infinite alternate;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-rank-37) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: bannerFloat 20s ease-in-out infinite;
}

/* Page Banner Decorative Shape - Fixed Right Side */
.page-banner-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--color-rank-30) 0%, var(--color-rank-41) 100%);
    border-radius: 50% 0 0 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    border-left: 2px solid var(--color-rank-25);
    box-shadow: -10px 0 30px var(--color-rank-28);
}

.page-banner-shape::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-rank-50) 0%, transparent 70%);
    border-radius: 50%;
    animation: shapePulse 4s ease-in-out infinite;
}

.page-banner-shape::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-rank-25) 0%, transparent 70%);
    border-radius: 50%;
    animation: shapePulse 5s ease-in-out infinite 0.5s;
}

@keyframes shapePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bannerGradient {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bannerFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
}

.page-banner > .container {
    position: relative;
    z-index: 1;
}

.page-banner .row {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.page-banner h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.breadcrumb {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    border: 1px solid var(--color-rank-17);
    box-shadow: 0 4px 15px var(--color-rank-22);
    margin-top: 1rem;
}

.breadcrumb-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-muted);
    padding: 0 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: var(--accent-blue);
    transform: translateX(2px);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* Forms */
.form-control {
    background: var(--color-rank-20);
    border: 1px solid var(--color-rank-17);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 16px;
}

.form-control:focus {
    background: var(--color-rank-21);
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem var(--color-rank-32);
}

/* Form Select Custom White Arrow */
.form-select {
    background: var(--color-rank-20) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 12px center / 16px 12px;
    border: 1px solid var(--color-rank-17);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 40px 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select:focus {
    background: var(--color-rank-21) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 12px center / 16px 12px;
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem var(--color-rank-32);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.contact-form {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px var(--color-rank-19);
}

.contact-info-card {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 12px 40px var(--color-rank-19);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
}

/* Blog Sidebar */
.blog-sidebar {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px var(--color-rank-19);
}

.blog-sidebar h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-sidebar .list-group {
    background: transparent;
    border: none;
}

.blog-sidebar .list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    background: transparent;
    border-bottom: 1px solid var(--color-rank-31);
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.blog-sidebar .list-group-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-sidebar .list-group-item:hover {
    background: var(--color-rank-21);
    transform: translateX(3px);
}

.blog-sidebar .list-group-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-sidebar .list-group-item a:hover {
    color: var(--accent-blue);
}

.blog-sidebar .list-group-item.active {
    background: var(--gradient-primary);
    border-color: var(--color-rank-29);
    border-left: 3px solid var(--color-rank-51);
}

.blog-sidebar .list-group-item.active a {
    color: white;
    font-weight: 600;
}

.blog-sidebar .list-group-item.active:hover {
    background: var(--gradient-secondary);
    transform: translateX(3px);
    transition: all 0.3s ease;
}

/* Product Filter */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: var(--color-rank-33);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--color-rank-17);
    box-shadow: 4px 0 30px var(--color-rank-40);
    z-index: 1050;
    transition: left 0.4s ease;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 0 20px 20px 0;
}

.filter-sidebar.show {
    left: 0;
}

.filter-sidebar h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.filter-sidebar .filter-close {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.filter-sidebar .filter-close:hover {
    color: var(--text-primary);
    background: var(--color-rank-21);
    transform: rotate(90deg);
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-rank-52);
    z-index: 1049;
    display: none;
}

.filter-overlay.show {
    display: block;
}

/* Filter Categories */
.filter-categories {
    margin-bottom: 2rem;
}

.filter-categories h5 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-rank-17);
}

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

.filter-category-list > li {
    margin-bottom: 0.5rem;
}

.filter-category-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    border: 1px solid transparent;
}

.filter-category-link:hover {
    color: var(--text-primary);
    background: var(--color-rank-21);
    border-color: var(--color-rank-25);
    transform: translateX(5px);
    padding-left: 1.25rem;
}

.filter-category-link:active,
.filter-category-link.active {
    color: white;
    background: var(--gradient-primary);
    border-color: var(--color-rank-29);
    box-shadow: 0 4px 12px var(--color-rank-18);
}

.filter-category-list > li > .filter-category-link {
    font-weight: 600;
    font-size: 1rem;
}

.filter-sub-category-list {
    margin: 0.5rem 0 0 0;
    padding: 0;
    list-style: none;
    padding-left: 1rem;
    border-left: 2px solid var(--color-rank-25);
    margin-left: 0.5rem;
}

.filter-sub-category-list li {
    margin-bottom: 0.25rem;
}

.filter-sub-category-list .filter-category-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.filter-sub-category-list .filter-category-link:hover {
    transform: translateX(3px);
    padding-left: 1rem;
}

.filter-sub-category-list .filter-category-link:active,
.filter-sub-category-list .filter-category-link.active {
    background: var(--color-rank-25);
    border-color: var(--color-rank-18);
    color: var(--accent-blue);
}

.product-topbar {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--color-rank-19);
}

.product-topbar .container {
    padding: 0;
}

.product-topbar .row {
    margin: 0;
}

.product-topbar .col-md-6 {
    display: flex;
    align-items: center;
}

.product-topbar .col-md-6.text-md-end {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.product-topbar .col-md-6.text-md-end span {
    white-space: nowrap;
    flex-shrink: 0;
}

.product-topbar .form-select {
    min-width: 140px;
    flex-shrink: 0;
}

/* Product Filter Button - Fixed Position */
.product-filter-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 1px solid var(--color-rank-29);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--color-rank-26);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 0;
}

.product-filter-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.product-filter-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px var(--color-rank-53);
    background: var(--gradient-secondary);
}

.product-filter-btn:active {
    transform: scale(0.95) translateY(0);
}

.product-filter-btn i {
    margin: 0;
}

/* Product Gallery Swiper Navigation */
.product-main-gallery {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.product-main-gallery .swiper-button-next,
.product-main-gallery .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--color-rank-24);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-29);
    border-radius: 50%;
    color: var(--text-primary);
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--color-rank-19);
    z-index: 10;
}

.product-main-gallery .swiper-button-next {
    right: 20px;
}

.product-main-gallery .swiper-button-prev {
    left: 20px;
}

.product-main-gallery .swiper-button-next::after,
.product-main-gallery .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.product-main-gallery .swiper-button-next:hover,
.product-main-gallery .swiper-button-prev:hover {
    background: var(--gradient-primary);
    border-color: var(--color-rank-34);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--color-rank-23);
}

.product-main-gallery .swiper-button-next:hover::after,
.product-main-gallery .swiper-button-prev:hover::after {
    color: white;
    transform: scale(1.1);
}

.product-main-gallery .swiper-button-next:active,
.product-main-gallery .swiper-button-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.product-main-gallery .swiper-button-next.swiper-button-disabled,
.product-main-gallery .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: auto;
}

.product-main-gallery .swiper-button-next.swiper-button-disabled:hover,
.product-main-gallery .swiper-button-prev.swiper-button-disabled:hover {
    background: var(--color-rank-24);
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 15px var(--color-rank-19);
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-feature-item {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px var(--color-rank-22);
    position: relative;
    overflow: hidden;
}

.product-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--color-rank-28) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-feature-item:hover {
    transform: translateY(-3px);
    background: var(--color-rank-24);
    border-color: var(--color-rank-18);
    box-shadow: 0 8px 20px var(--color-rank-25);
}

.product-feature-item:hover::before {
    opacity: 1;
}

.product-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px var(--color-rank-18);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.product-feature-item:hover .product-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px var(--color-rank-23);
}

.product-feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-feature-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-feature-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px var(--color-rank-19);
    height: 100%;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px var(--color-rank-27);
    border-color: var(--color-rank-18);
}

.testimonial-stars {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed var(--color-rank-18);
    z-index: -1;
}

.process-item:last-child::after {
    display: none;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px var(--color-rank-18);
    transition: all 0.4s ease;
}

.process-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--color-rank-23);
}

/* Editor Content */
.editor-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.editor-content h1 {
    font-size: 2.5rem;
}

.editor-content h2 {
    font-size: 2rem;
}

.editor-content h3 {
    font-size: 1.75rem;
}

.editor-content h4 {
    font-size: 1.5rem;
}

.editor-content p {
    margin-bottom: 1.5rem;
}

.editor-content ul,
.editor-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.editor-content li {
    margin-bottom: 0.5rem;
}

.editor-content blockquote {
    border-left: 4px solid var(--accent-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--color-rank-28);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: var(--color-rank-39) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-rank-17);
    position: relative;
    color: var(--text-secondary);
}

footer h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

footer .text-white-50 {
    color: var(--text-muted) !important;
}

/* Scroll to Top */
#scrollToTop {
    transition: all 0.4s ease;
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-29);
    box-shadow: 0 4px 15px var(--color-rank-18);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

}

#scrollToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--color-rank-23);
}

/* Legacy Hero Slider Support */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 76px);
    overflow: hidden;
    z-index: 1;
    background: var(--dark-bg-primary);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.hero-content-wrapper {
    color: var(--text-primary);
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-rank-17);
    box-shadow: 0 12px 40px var(--color-rank-19);
}

.hero-content-wrapper h1 {
    color: var(--text-primary);
}

.hero-content-wrapper p {
    color: var(--text-secondary);
}

/* Section Shapes */
.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-shape {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.shape-abstract-1,
.shape-abstract-2,
.shape-abstract-3 {
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-geometric-circle {
    background: var(--gradient-primary);
    border-radius: 50%;
}

.shape-geometric-square {
    background: var(--gradient-primary);
    border-radius: 12px;
}

.shape-geometric-triangle {
    border-bottom-color: var(--color-rank-30);
}

.shape-geometric-hexagon {
    background: var(--gradient-primary);
}

.text-muted {
    color: var(--text-secondary) !important;
}

.make-sticky {  
    position: sticky;
    top: 100px;
}

.map-iframe {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px var(--color-rank-54), 0 1.5px 7px var(--color-rank-55);
    /* Parlak ve efektli görünüm için */
    background: linear-gradient(135deg, var(--color-rank-37) 0%, var(--color-rank-56) 100%);
}

.map-iframe iframe {
    border: none;
    display: block;
    transition: filter 0.3s;
    filter: brightness(0.68) drop-shadow(0 1.5px 8px var(--color-rank-57));
}



/* Product Topbar - Large Screens (992px and above) */
@media (min-width: 992px) {
    .product-topbar {
        padding: 1.5rem 2rem;
    }
    
    .product-topbar .col-md-6.text-md-end {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .product-topbar .col-md-6.text-md-end span {
        margin: 0;
        margin-right: 0.5rem;
        white-space: nowrap;
    }
    
    .product-topbar .form-select {
        margin: 0;
        min-width: 150px;
    }
    
    .product-topbar .form-select.ms-2 {
        margin-left: 0.5rem !important;
    }
}

/* Product Topbar - Extra Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .product-topbar {
        padding: 1.75rem 2.5rem;
    }
    
    .product-topbar .col-md-6.text-md-end {
        gap: 1rem;
    }
    
    .product-topbar .form-select {
        min-width: 160px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-modern {
        padding: 70px 0 60px;
    }

    .hero-slide-inner {
        padding: 24px 20px 28px;
    }

    .hero-slide-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .hero-image-modern {
        order: -1;
    }

    .hero-pagination {
        bottom: 12px;
    }

    .about-image {
        margin-bottom: 2rem;
    }
    
    .page-banner {
        padding: 80px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner::after {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -15%;
    }
    
    .page-banner-shape {
        width: 350px;
        height: 350px;
    }
    
    .page-banner-shape::before {
        width: 180px;
        height: 180px;
    }
    
    .page-banner-shape::after {
        width: 120px;
        height: 120px;
    }
    
    /* Product Topbar Tablet */
    .product-topbar {
        padding: 1.25rem;
    }
    
    .product-topbar .col-md-6.text-md-end {
        margin-top: 1rem;
    }
    
    .product-topbar .form-select {
        margin-top: 0.5rem;
    }

    html,body {
        overflow-x: hidden;
    }
}

@media (max-width: 575.98px) {
    .page-banner {
        padding: 60px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-banner h1::after {
        width: 40px;
        height: 3px;
    }
    
    .breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .page-banner::after {
        width: 200px;
        height: 200px;
    }
    
    .page-banner-shape {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }
    
    .page-banner-shape::before {
        width: 100px;
        height: 100px;
    }
    
    .page-banner-shape::after {
        width: 80px;
        height: 80px;
    }
    
    /* Product Topbar Mobile */
    .product-topbar {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .product-topbar .product-filter-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .product-topbar .col-md-6.text-md-end span {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Gallery Categories Small Mobile */
    .gallery-categories {
        gap: 0.4rem;
    }
    
    .gallery-category-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Product Gallery Navigation Mobile */
    .product-main-gallery .swiper-button-next,
    .product-main-gallery .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .product-main-gallery .swiper-button-next {
        right: 10px;
    }
    
    .product-main-gallery .swiper-button-prev {
        left: 10px;
    }
    
    .product-main-gallery .swiper-button-next::after,
    .product-main-gallery .swiper-button-prev::after {
        font-size: 14px;
    }
    
    /* Filter Categories Mobile */
    .filter-sidebar {
        padding: 1.25rem;
    }
    
    .filter-sidebar h4 {
        font-size: 1.25rem;
    }
    
    .filter-categories h5 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .filter-category-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .filter-category-list > li > .filter-category-link {
        font-size: 0.9rem;
    }
    
    .filter-sub-category-list {
        margin-left: 0.25rem;
        padding-left: 0.75rem;
    }
    
    .filter-sub-category-list .filter-category-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin-left: 0.25rem;
    }
    
    /* Gallery Categories Mobile */
    .gallery-categories {
        gap: 0.5rem;
    }
    
    .gallery-category-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Product Gallery Navigation Small Mobile */
    .product-main-gallery .swiper-button-next,
    .product-main-gallery .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .product-main-gallery .swiper-button-next {
        right: 8px;
    }
    
    .product-main-gallery .swiper-button-prev {
        left: 8px;
    }
    
    .product-main-gallery .swiper-button-next::after,
    .product-main-gallery .swiper-button-prev::after {
        font-size: 12px;
    }
    
    /* Product Features Grid Mobile */
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .product-feature-item {
        padding: 0.85rem;
    }
    
    .product-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.8rem;
    }
    
    .product-feature-label {
        font-size: 0.8rem;
    }
    
    .product-feature-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-modern {
        padding: 60px 0;
    }
    
    .hero-content-modern h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content-modern p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-decorative-shape {
        width: 300px;
        height: 300px;
        top: 5%;
        right: -15%;
    }
    
    .hero-decorative-shape::before {
        width: 200px;
        height: 200px;
    }
    
    .hero-decorative-shape::after {
        width: 100px;
        height: 100px;
    }
    
    .hero-pagination {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        width: 12px;
        height: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .recognition-logos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .metrics-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-sidebar {
        width: 100%;
        left: -100%;
        padding: 1.5rem;
    }
    
    /* Product Features Grid Tablet */
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    
    .product-feature-item {
        padding: 0.9rem;
    }
    
    .product-feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    
    .filter-categories h5 {
        font-size: 1rem;
    }
    
    .filter-category-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    
    .filter-sub-category-list .filter-category-link {
        padding: 0.45rem 0.65rem;
        font-size: 0.85rem;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-item::after {
        display: none;
    }
    
    .reference-logo-card {
        padding: 1rem;
    }
    
    .reference-logo-card img {
        padding: 0.25rem;
    }
    
    .product-filter-btn {
        width: 50px;
        height: 50px;
        bottom: 100px;
        right: 30px;
       
    }
    
    /* Product Topbar Responsive */
    .product-topbar {
        padding: 1rem;
    }
    
    .product-topbar .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-topbar .col-md-6 {
        width: 100%;
        text-align: left !important;
       justify-content: center;
    }
    
    .product-topbar .col-md-6.text-md-end {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-topbar .col-md-6.text-md-end span {
        margin: 0;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .product-topbar .form-select {
        width: 100% !important;
        margin: 0 !important;
    }
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-22);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-15);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-58);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--accent-color);

    color: var(--color-rank-1);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    background-color: var(--accent-secondary);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-16);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-1);
    background-color: var(--accent-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-1);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.navbar-brand img, footer .footer-logo img{
  object-position: left;
  object-fit: contain;
  width: 125px;
  height: auto;
}  


.product-card .card-title a:hover {
    color: var(--accent-blue) !important;
    text-decoration: none !important;
}

/* Stats Section - Modern Counter Design */
.stats-section {
    padding: 80px 0;
    background: var(--dark-bg-primary);
    position: relative;
    overflow: hidden;
}

/* .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--color-rank-37) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
} */

.stats-section > .container {
    position: relative;
    z-index: 1;
}



.stat-item {
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px var(--color-rank-19);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--color-rank-28) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: var(--color-rank-24);
    border-color: var(--color-rank-26);
    box-shadow: 0 12px 40px var(--color-rank-32);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-section .row {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}


/* Google'Ä±n kendi dark mode'u yetmezse bunu kullanabilirsin */
.g-recaptcha {
    filter: invert(0.9) hue-rotate(180deg);
}

#dynamicPopup .modal-content {
    background: var(--dark-bg-primary);
    border: 1px solid var(--glass-border-dark);
    box-shadow: 0 24px 60px var(--glass-shadow-dark);
    color: var(--text-primary);

    /* Ä°Ã§erik taÅŸarsa scroll aÃ§Ä±lsÄ±n */
    max-height: 80vh;
    overflow-y: auto;

    /* Firefox iÃ§in dark scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--color-rank-42) transparent;
}

/* Chrome / Edge / Safari iÃ§in dark scrollbar */
#dynamicPopup .modal-content::-webkit-scrollbar {
    width: 6px;
}

#dynamicPopup .modal-content::-webkit-scrollbar-track {
    background: transparent;
}

#dynamicPopup .modal-content::-webkit-scrollbar-thumb {
    background-color: var(--color-rank-42);
    border-radius: 999px;
}

#dynamicPopup .modal-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-rank-59);
}
#dynamicPopup .modal-footer {
    border-top: 1px solid var(--glass-border-dark);
}

.blog-sidebar hr {
    margin: 2rem 0;
    border-color: var(--glass-border-dark);
    border-width: 1px;
}

.blog-sidebar .list-group-item {
    border: none;
}

.blog-sidebar .list-group-item a.active {
    color: var(--accent-blue);
}

/* Share Buttons - Modern Social Share Design */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;


    flex-wrap: wrap;
}

.share-buttons > span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-rank-21);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-17);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px var(--color-rank-22);
    position: relative;
    overflow: hidden;
}

.share-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.share-buttons a i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.share-buttons a:hover {
    transform: translateY(-3px);
    border-color: var(--color-rank-26);
    box-shadow: 0 8px 20px var(--color-rank-18);
    color: white;
}

.share-buttons a:hover::before {
    opacity: 1;
}

.share-buttons a:hover i {
    transform: scale(1.15);
    color: white;
}



/* Responsive Design */
@media (max-width: 767.98px) {
    .share-buttons {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .share-buttons > span {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .share-buttons a {
        width: 40px;
        height: 40px;
    }
    
    .share-buttons a i {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .share-buttons {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .share-buttons > span {
        font-size: 0.85rem;
    }
    
    .share-buttons a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .share-buttons a i {
        font-size: 0.95rem;
    }
}

.filter-sidebar ::placeholder {
    font-size: 0.8rem;
}

.filter-category-link:active, .filter-category-link.active {
    padding-left: 1rem !important;
}


.filter-sidebar .filter-btn-area.make-float {
    position: sticky;
    bottom: 30px;
    right: 0;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 12px;
    background: var(--color-rank-24);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    box-shadow: 0 8px 32px var(--color-rank-27);
    z-index: 1000;
}

.filter-sidebar .filter-btn-area a.btn-primary {
    display: block;
    margin-bottom: 1rem;
}

.filter-sidebar .temizle-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
        text-align: center;
    display: block;
}



/* Chrome / Edge / Safari için dark scrollbar */
.filter-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: var(--color-rank-36);
    border-radius: 10px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--color-rank-23);
    border-radius: 10px;
    border: 2px solid var(--color-rank-36);
    transition: background 0.3s ease;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-rank-60);
    border-color: var(--color-rank-18);
}


/* Social Share - Product Detail */
.social-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-rank-21);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-rank-17);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px var(--color-rank-22);
    position: relative;
    overflow: hidden;
}

.social-share a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-share a i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.social-share a:hover {
    transform: translateY(-3px);
    border-color: var(--color-rank-26);
    box-shadow: 0 8px 20px var(--color-rank-18);
    color: white;
    text-decoration: none;
}

.social-share a:hover::before {
    opacity: 1;
}

.social-share a:hover i {
    transform: scale(1.15);
    color: white;
}



/* Responsive Design */
@media (max-width: 767.98px) {
    .social-share {
        gap: 0.5rem;
    }
    
    .social-share a {
        width: 40px;
        height: 40px;
    }
    
    .social-share a i {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .social-share {
        gap: 0.5rem;
    }
    
    .social-share a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .social-share a i {
        font-size: 0.95rem;
    }
}



/* Product Detail Meta */
.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
    background: var(--color-rank-20);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-17);
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--color-rank-19);
    margin-bottom: 1.5rem;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-rank-31);
    transition: all 0.3s ease;
}

.product-meta-item:last-child {
    border-bottom: none;
}



.product-meta-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
    flex-shrink: 0;
}

.product-meta-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.product-meta-value a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}



.product-meta-value a:hover {
    color: var(--accent-purple);
    text-decoration: none;
}


.product-meta-value.text-success {
    color: var(--color-rank-10) !important;
}

.product-meta-value.text-success i {
    color: var(--color-rank-10);
    font-size: 0.9rem;
}

.product-meta-value i {
    color: var(--accent-blue);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .product-detail-meta {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .product-meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .product-meta-item:hover {
        padding-left: 0;
    }
    
    .product-meta-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .product-meta-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .product-detail-meta {
        padding: 1rem;
    }
    
    .product-meta-label {
        font-size: 0.8rem;
    }
    
    .product-meta-value {
        font-size: 0.85rem;
    }
}


.product-main-gallery {
    aspect-ratio: 4/3;
}

input:read-only {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-info-text a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-tertiary {
    color: var(--text-tertiary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.btn-outline-primary {
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
}

.btn-outline-primary:hover {
    color: var(--text-secondary) !important;
    border-color: var(--text-secondary) !important;
    background: transparent !important;
}




}