/* ============================================
   SERVICES PAGE - Bento Grid Modern Style
   ============================================ */

:root {
    /* Intime Colors - Black, White, Grey */
    --bento-primary: #000000;
    --bento-primary-light: #333333;
    --bento-accent: #000000;
    --bento-bg: #f5f5f5;
    --bento-white: #ffffff;
    --bento-gray: #666666;
    --bento-dark: #000000;
    /* Legacy aliases */
    --bento-blue: #000000;
    --bento-blue-light: #333333;
}

/* Page Hero - Clean & Modern */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bento-bg);
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--bento-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bento-dark);
    line-height: 1.2;
}

.page-hero h1 .text-accent {
    color: var(--bento-accent);
}

.page-hero p {
    font-size: 18px;
    color: var(--bento-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   SERVICES TOOLBAR - Search, Filters, Sort
   ============================================ */

/* Sticky Toolbar Styles */
.services-toolbar-wrapper {
    position: relative;
    z-index: 100;
}

.services-toolbar-wrapper.is-sticky .services-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    animation: servicesToolbarSlideDown 0.3s ease;
    margin-bottom: 0;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* ============================================
   STICKY MODE - Search Bar Styles
   ============================================ */

/* Search container - MUST appear first and be visible */
.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
    order: -1 !important; /* Force first position */
    margin: 0 !important;
    padding: 0 !important;
}

.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container .search-input {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: 44px !important;
    padding: 10px 40px 10px 40px !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background: #f5f5f5 !important;
    font-size: 15px !important;
    color: #333 !important;
    box-sizing: border-box !important;
}

.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container .search-input:focus {
    background: #fff !important;
    border-color: #000 !important;
    outline: none !important;
}

.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container .search-input::placeholder {
    color: #999 !important;
}

.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container .search-icon {
    display: flex !important;
    visibility: visible !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #888 !important;
    font-size: 14px !important;
    pointer-events: none !important;
}

.services-toolbar-wrapper.is-sticky .services-toolbar > .search-container .search-clear {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Category chips in sticky mode */
.services-toolbar-wrapper.is-sticky .services-toolbar > .category-chips-wrapper {
    order: 0 !important;
}

/* Toolbar options in sticky mode */
.services-toolbar-wrapper.is-sticky .services-toolbar > .toolbar-options {
    order: 1 !important;
}

.services-toolbar-placeholder {
    display: none;
}

.services-toolbar-wrapper.is-sticky ~ .services-toolbar-placeholder {
    display: block;
}

@keyframes servicesToolbarSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.services-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Search Container */
.services-toolbar .search-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.services-toolbar .search-input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    font-size: 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
    color: #333;
}

.services-toolbar .search-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.services-toolbar .search-input::placeholder {
    color: #999;
}

.services-toolbar .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.services-toolbar .search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 10px;
    transition: all 0.2s ease;
}

.services-toolbar .search-clear:hover {
    background: #ddd;
    color: #333;
}

/* Live Search Results Dropdown */
.services-toolbar .search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid #e5e5e5;
}

.services-toolbar .search-results-dropdown.active {
    display: block;
    animation: serviceDropdownFadeIn 0.2s ease;
}

@keyframes serviceDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-toolbar .search-results-list {
    padding: 8px 0;
}

.services-toolbar .search-results-header {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
}

.services-toolbar .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.services-toolbar .search-result-item:hover {
    background: #f8f8f8;
}

.services-toolbar .search-result-item.active {
    background: #f0f0f0;
}

.services-toolbar .search-result-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5f5f5, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    flex-shrink: 0;
}

.services-toolbar .search-result-image {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.services-toolbar .search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-toolbar .search-result-arrow {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}

.services-toolbar .search-result-info {
    flex: 1;
    min-width: 0;
}

.services-toolbar .search-result-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.services-toolbar .search-result-name mark {
    background: #fff3cd;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.services-toolbar .search-result-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-toolbar .search-result-price {
    font-weight: 600;
    color: #000;
}

.services-toolbar .search-result-type {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.services-toolbar .search-result-type.type-remote {
    background: #e8f5e9;
    color: #2e7d32;
}

.services-toolbar .search-result-type.type-presential {
    background: #dcfce7;
    color: #16a34a;
}

.services-toolbar .search-result-type.type-in_store {
    background: #fef3c7;
    color: #d97706;
}

.services-toolbar .search-no-results {
    padding: 24px 16px;
    text-align: center;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.services-toolbar .search-no-results i {
    font-size: 32px;
    color: #ddd;
    display: block;
}

.services-toolbar .search-no-results span {
    font-size: 14px;
}

.services-toolbar .search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s ease;
}

.services-toolbar .search-view-all:hover {
    background: #f8f8f8;
}

.services-toolbar .search-view-all i {
    color: #666;
}

/* Category Chips */
.services-toolbar .category-chips-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-toolbar .category-chips-wrapper::-webkit-scrollbar {
    display: none;
}

.services-toolbar .category-chips {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    flex-wrap: nowrap;
    min-width: max-content;
}

.services-toolbar .category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.services-toolbar .category-chip:hover {
    border-color: #bbb;
    background: #fafafa;
}

.services-toolbar .category-chip.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.services-toolbar .category-chip i {
    font-size: 12px;
}

/* Toolbar Options - Sort & Count */
.services-toolbar .toolbar-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.services-toolbar .results-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.services-toolbar .results-count span {
    color: #000;
    font-weight: 700;
}

.services-toolbar .sort-dropdown {
    position: relative;
}

.services-toolbar .sort-select {
    padding: 10px 36px 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.2s ease;
}

.services-toolbar .sort-select:hover {
    border-color: #bbb;
}

.services-toolbar .sort-select:focus {
    outline: none;
    border-color: #000;
}

/* No Results State */
.services-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.services-no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.services-no-results h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.services-no-results p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.services-no-results button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.services-no-results button:hover {
    background: #333;
}

/* Service Card Highlight Animation */
.service-detail.service-highlight {
    animation: serviceHighlight 0.8s ease-out;
    box-shadow: 0 0 0 3px #000, 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.02);
    z-index: 10;
}

@keyframes serviceHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.4);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 0 3px #000, 0 8px 32px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Responsive - Toolbar */
@media (max-width: 768px) {
    .services-toolbar {
        gap: 12px;
        margin-bottom: 20px;
    }

    /* IMPORTANT: Ensure search container is always visible on mobile */
    .services-toolbar > .search-container {
        display: block !important;
        max-width: 100% !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 48px !important;
        position: relative !important;
        order: -1 !important; /* Force it to be first */
    }

    .services-toolbar > .search-container .search-input {
        display: block !important;
        padding: 14px 44px 14px 44px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
        width: 100% !important;
        visibility: visible !important;
        border: 1.5px solid #e0e0e0 !important;
        background: #fff !important;
        min-height: 48px !important;
    }

    .services-toolbar > .search-container .search-icon {
        display: block !important;
        position: absolute !important;
        left: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .services-toolbar .category-chip {
        padding: 8px 14px;
        font-size: 12px;
    }

    .services-toolbar .toolbar-options {
        flex-wrap: wrap;
        gap: 12px;
    }

    .services-toolbar .results-count {
        font-size: 13px;
    }

    .services-toolbar .sort-select {
        padding: 8px 32px 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-toolbar .category-chip {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 20px;
    }

    .services-toolbar .category-chip i {
        font-size: 11px;
    }
}

/* Services Section */
.services-list-section {
    padding: 60px 0 100px;
    background: var(--bento-bg);
}

/* ============================================
   BENTO GRID LAYOUT
   ============================================ */

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

/* Hide old icon */
.service-detail-icon {
    display: none;
}

/* Base Service Card */
.service-detail {
    background: var(--bento-white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   BENTO GRID - Card Sizes & Positions
   ============================================ */

/* Card 1 - Large Featured (Reparação) */
.service-detail:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
    flex-direction: row;
}

.service-detail:nth-child(1) .service-gallery {
    width: 55%;
    height: 100%;
}

.service-detail:nth-child(1) .service-detail-content {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card 2 - Tall (Software) */
.service-detail:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
    background: var(--bento-blue);
}

.service-detail:nth-child(2) .service-detail-content h2,
.service-detail:nth-child(2) .service-detail-content p,
.service-detail:nth-child(2) .price-value {
    color: var(--bento-white);
}

.service-detail:nth-child(2) .price-label {
    color: rgba(255,255,255,0.7);
}

.service-detail:nth-child(2) .btn {
    background: var(--bento-white);
    color: var(--bento-blue);
}

/* Card 3 - Square (Suporte Remoto) */
.service-detail:nth-child(3) {
    grid-column: span 4;
    grid-row: span 2;
}

/* Card 4 - Wide (Impressoras) */
.service-detail:nth-child(4) {
    grid-column: span 4;
    grid-row: span 2;
    flex-direction: row-reverse;
}

.service-detail:nth-child(4) .service-gallery {
    width: 50%;
    height: 100%;
}

.service-detail:nth-child(4) .service-detail-content {
    width: 50%;
}

/* Card 5 - Medium (Websites) */
.service-detail:nth-child(5) {
    grid-column: span 4;
    grid-row: span 2;
    background: linear-gradient(135deg, #2D5A3D 0%, #1a3a26 100%);
}

.service-detail:nth-child(5) .service-gallery {
    display: none;
}

.service-detail:nth-child(5) .service-detail-content {
    height: 100%;
    justify-content: center;
}

.service-detail:nth-child(5) .service-detail-content h2,
.service-detail:nth-child(5) .service-detail-content p,
.service-detail:nth-child(5) .price-value {
    color: var(--bento-white);
}

.service-detail:nth-child(5) .price-label {
    color: rgba(255,255,255,0.7);
}

.service-detail:nth-child(5) .btn {
    background: var(--bento-white);
    color: var(--bento-accent);
}

/* Card 6 - Large (Power BI) */
.service-detail:nth-child(6) {
    grid-column: span 8;
    grid-row: span 2;
    flex-direction: row;
}

.service-detail:nth-child(6) .service-gallery {
    width: 60%;
    height: 100%;
}

.service-detail:nth-child(6) .service-detail-content {
    width: 40%;
}

/* Card 7 - Compact (Redes) */
.service-detail:nth-child(7) {
    grid-column: span 4;
    grid-row: span 2;
}

/* Card 8 - Wide (CCTV) */
.service-detail:nth-child(8) {
    grid-column: span 5;
    grid-row: span 2;
}

/* Card 9 - Medium (Desbloqueio) */
.service-detail:nth-child(9) {
    grid-column: span 3;
    grid-row: span 2;
    background: var(--bento-dark);
}

.service-detail:nth-child(9) .service-gallery {
    height: 50%;
}

.service-detail:nth-child(9) .service-detail-content h2,
.service-detail:nth-child(9) .service-detail-content p,
.service-detail:nth-child(9) .price-value {
    color: var(--bento-white);
}

.service-detail:nth-child(9) .price-label {
    color: rgba(255,255,255,0.6);
}

.service-detail:nth-child(9) .btn {
    background: var(--bento-white);
    color: var(--bento-dark);
}

/* Card 10 - Wide (Hospedagem) */
.service-detail:nth-child(10) {
    grid-column: span 4;
    grid-row: span 2;
}

/* Cards 11+ - Default fallback style */
.service-detail:nth-child(n+11) {
    grid-column: span 4;
    grid-row: span 2;
}

/* ============================================
   SERVICE GALLERY
   ============================================ */

.service-gallery {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bento-bg);
    flex-shrink: 0;
}

.service-gallery-main {
    width: 100%;
    height: 100%;
}

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

.service-detail:hover .service-gallery-main img {
    transform: scale(1.08);
}

/* Thumbnails - Modern Dots */
.service-gallery-thumbnails {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.service-gallery-thumb {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-gallery-thumb img {
    display: none;
}

.service-gallery-thumb:hover {
    background: var(--bento-blue-light);
    transform: scale(1.2);
}

.service-gallery-thumb.active {
    background: var(--bento-accent);
    width: 28px;
    border-radius: 10px;
}

/* Gallery Hover Overlay */
.service-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.service-gallery-overlay i {
    font-size: 40px;
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-gallery:hover .service-gallery-overlay {
    opacity: 1;
}

.service-gallery:hover .service-gallery-overlay i {
    transform: scale(1);
}

/* ============================================
   CONTENT AREA
   ============================================ */

.service-detail-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-detail-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bento-dark);
    line-height: 1.3;
}

.service-detail-content > p {
    font-size: 14px;
    color: var(--bento-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Features - Hidden for clean look */
.service-features {
    display: none;
}

/* Pricing */
.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    color: var(--bento-gray);
    font-weight: 500;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--bento-dark);
}

/* CTA Buttons Container */
.service-detail-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* CTA Button */
.service-detail .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bento-blue);
    color: var(--bento-white);
    border: none;
    width: fit-content;
}

.service-detail .btn:hover {
    background: var(--bento-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.service-detail .btn i {
    font-size: 12px;
}

/* Secondary Button - Ver Detalhes */
.service-detail .btn-view-details {
    background: transparent;
    border: 2px solid var(--bento-blue);
    color: var(--bento-blue);
}

.service-detail .btn-view-details:hover {
    background: var(--bento-blue);
    color: var(--bento-white);
}

/* Special cards button adjustments */
.service-detail:nth-child(2) .btn-view-details,
.service-detail:nth-child(5) .btn-view-details,
.service-detail:nth-child(9) .btn-view-details {
    border-color: rgba(255,255,255,0.5);
    color: var(--bento-white);
}

.service-detail:nth-child(2) .btn-view-details:hover,
.service-detail:nth-child(5) .btn-view-details:hover,
.service-detail:nth-child(9) .btn-view-details:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--bento-white);
}

/* ============================================
   ICON BADGES (optional decoration)
   ============================================ */

.service-detail::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail:hover::before {
    opacity: 1;
}

/* ============================================
   STATS/NUMBERS DECORATION
   ============================================ */

.service-detail:nth-child(1)::after {
    content: '500+';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.service-detail:nth-child(6)::after {
    content: '100+';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

/* ============================================
   SERVICE DETAIL MODAL - Clean E-commerce Style
   ============================================ */

.service-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-detail-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-detail-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.service-detail-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.service-detail-modal.active .service-detail-modal-content {
    transform: translateY(0);
}

/* Scrollable content wrapper */
.service-modal-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   SERVICE MODAL - Product-Style Layout
   ============================================ */

/* Main product section - 2 columns on desktop */
.service-modal-main {
    display: flex;
    flex-direction: row;
    min-height: auto;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    gap: 40px;
}

/* Gallery section - Left side */
.service-modal-gallery-section {
    width: 55%;
    flex-shrink: 0;
    background: #fff;
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* eBay Style Gallery Layout */
.service-gallery-layout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Vertical Thumbnails - Left side */
.service-thumbnails-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding-right: 4px;
}

.service-thumbnails-vertical::-webkit-scrollbar {
    width: 3px;
}

.service-thumbnails-vertical::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.service-thumbnails-vertical .service-modal-thumb {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    border: 2px solid #e5e5e5;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s ease;
    background: #fff;
    flex-shrink: 0;
}

.service-thumbnails-vertical .service-modal-thumb:hover {
    border-color: #767676;
}

.service-thumbnails-vertical .service-modal-thumb.active {
    border-color: #191919;
}

.service-thumbnails-vertical .service-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

/* Main Image Container - Same style as Product Modal */
.service-main-image-container {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    max-height: 480px;
    padding: 16px;
}

/* Main Image - Contained within square container */
.service-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
    cursor: zoom-in;
}

/* Navigation Arrows */
.service-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191919;
    font-size: 14px;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
}

.service-main-image-container:hover .service-nav-arrow {
    opacity: 1;
}

.service-nav-arrow:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-nav-prev {
    left: 12px;
}

.service-nav-next {
    right: 12px;
}

/* ============================================
   IMAGE OVERLAY ELEMENTS - Like Product Modal
   ============================================ */

/* Category Badge - Top Left */
.service-image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #3665f3;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-image-badge i {
    font-size: 10px;
}

/* Action Icons - Top Right */
.service-image-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.service-image-action-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #191919;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-image-action-btn:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

/* Share Section - Below Image */
.service-share-section {
    margin-top: 12px;
}

.service-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 8px 0;
    font-size: 14px;
    color: #0654ba;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.15s ease;
}

.service-share-btn:hover {
    color: #043d8a;
    text-decoration: underline;
}

.service-share-btn i {
    font-size: 13px;
}

/* ============================================
   ACTION BUTTONS - EBAY STYLE
   ============================================ */

.service-actions-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0 10px;
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
}

.service-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

/* Primary - Blue filled */
.service-btn-primary {
    background: #3665f3;
    color: white;
}

.service-btn-primary:hover {
    background: #2e59d9;
    color: white;
}

/* Secondary - Outline */
.service-btn-secondary {
    background: white;
    color: #3665f3;
    border: 2px solid #3665f3;
}

.service-btn-secondary:hover {
    background: #f0f3ff;
    color: #3665f3;
}

/* WhatsApp Section */
.service-whatsapp-section {
    padding-top: 10px;
}

.service-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.service-whatsapp-btn:hover {
    background: #1fb855;
    color: white;
}

.service-whatsapp-btn i {
    font-size: 20px;
}

/* ============================================
   FULLSCREEN IMAGE VIEWER
   ============================================ */

.service-image-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.service-image-fullscreen.active {
    display: flex;
}

.service-image-fullscreen img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 20px;
    transition: all 0.2s ease;
    z-index: 10001;
}

.service-fullscreen-close:hover {
    background: #e5e5e5;
    color: #000;
}

.service-fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    transition: all 0.2s ease;
    z-index: 10001;
}

.service-fullscreen-nav:hover {
    background: #e5e5e5;
    color: #000;
}

.service-fullscreen-prev {
    left: 20px;
}

.service-fullscreen-next {
    right: 20px;
}

/* Hide thumbnails column when no thumbnails */
.service-thumbnails-vertical:empty {
    display: none;
}

/* Legacy support */
.service-modal-main-image {
    aspect-ratio: 1;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    background: #fff;
}

.service-modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.service-modal-thumbnails {
    display: flex;
    padding: 16px 0;
    gap: 10px;
}

.service-modal-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 2px solid #eee;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.service-modal-thumb:hover {
    border-color: #999;
}

.service-modal-thumb.active {
    border-color: #000;
}

.service-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info section - Right side */
.service-modal-info-section {
    width: 45%;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.service-modal-info-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Service title */
.service-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* Price section */
.service-modal-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.service-modal-price-section .service-modal-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-modal-price-section .service-modal-old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.service-modal-price-section .service-modal-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Description */
.service-modal-description {
    margin-bottom: 24px;
}

.service-modal-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Features section with green icons */
.service-modal-features {
    margin-bottom: 24px;
}

.service-modal-features .service-modal-info-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-modal-features .service-modal-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border: none;
}

.service-modal-features .service-modal-info-item i {
    font-size: 16px;
    color: #22c55e;
    width: 20px;
    text-align: center;
}

.service-modal-features .service-modal-info-item .info-value {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Badges (duration, category) */
.service-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.service-modal-badges .service-modal-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f5f5f5;
    border-radius: 8px;
}

.service-modal-badges .service-modal-info-item i {
    font-size: 14px;
    color: #666;
}

.service-modal-badges .service-modal-info-item .info-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* Desktop Action Buttons */
.service-modal-actions-desktop {
    margin-top: auto;
    padding-top: 20px;
}

.service-modal-buttons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.service-modal-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.service-modal-btn-secondary:hover {
    background: #f5f5f5;
}

.service-modal-btn-secondary i {
    font-size: 16px;
}

.service-modal-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.service-modal-btn-primary.service-modal-btn-request {
    flex: 1.2;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: none;
}

.service-modal-btn-primary.service-modal-btn-request:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e08418 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Extra action buttons */
.service-modal-extra-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.service-modal-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-modal-action-btn:hover {
    background: #e5e5e5;
    color: #1a1a1a;
}

.service-modal-action-btn:hover i.fa-share-alt {
    color: #2563eb;
}

/* ========== RELATED SERVICES SECTION ========== */
/* Show on both desktop and mobile */
.modal-related-services {
    display: block;
    width: 100%;
    padding: 40px 20px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.related-services-header {
    max-width: 1400px;
    margin: 0 auto 20px;
}

.related-services-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.related-services-header h3 i {
    color: #666;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-service-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.05);
}

.related-service-info {
    padding: 12px;
}

.related-service-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.related-service-info .price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Mobile Fixed Actions */
.service-modal-actions-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    gap: 12px;
    align-items: center;
}

.service-modal-actions-mobile .mobile-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-modal-actions-mobile .mobile-btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.05);
}

.service-modal-actions-mobile .mobile-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bento-blue, #2563eb);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-modal-actions-mobile .mobile-btn-primary:hover {
    background: var(--bento-blue-dark, #1d4ed8);
}

.service-detail-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail-modal-close:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

/* ========== LEFT SIDE - GALLERY ========== */
.modal-gallery-section {
    width: 50%;
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.modal-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
}

.modal-thumb {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #eee;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.modal-thumb:hover {
    border-color: #999;
}

.modal-thumb.active {
    border-color: #000;
}

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

/* ========== RIGHT SIDE - INFO ========== */
.modal-info-section {
    width: 50%;
    background: #ffffff;
    overflow-y: auto;
}

.modal-info-content {
    padding: 50px;
}

.modal-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.modal-product-price {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.modal-product-description {
    margin-bottom: 32px;
}

.modal-product-description p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

.modal-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px 0;
}

.modal-features-section {
    margin-bottom: 32px;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
    padding: 8px 0;
}

.modal-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Section - Now in gallery area */
.modal-cta-section {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Quantity Selector (for products) */
.modal-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #e5e5e5;
}

.qty-value {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.modal-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.modal-btn-primary:hover {
    background: #333;
}

.modal-btn-primary i {
    font-size: 13px;
}

.modal-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: transparent;
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #25D366;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

/* Extra Info */
.modal-extra-info {
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.modal-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.modal-info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 13px;
    color: #888;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-value i {
    color: #f5a623;
    font-size: 12px;
    margin-left: 4px;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */

@media (max-width: 1200px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }

    .service-detail:nth-child(1) {
        grid-column: span 6;
        flex-direction: column;
    }

    .service-detail:nth-child(1) .service-gallery,
    .service-detail:nth-child(1) .service-detail-content {
        width: 100%;
    }

    .service-detail:nth-child(1) .service-gallery {
        height: 280px;
    }

    .service-detail:nth-child(2),
    .service-detail:nth-child(3) {
        grid-column: span 3;
    }

    .service-detail:nth-child(4) {
        grid-column: span 6;
        flex-direction: column;
    }

    .service-detail:nth-child(4) .service-gallery,
    .service-detail:nth-child(4) .service-detail-content {
        width: 100%;
    }

    .service-detail:nth-child(5),
    .service-detail:nth-child(7) {
        grid-column: span 3;
    }

    .service-detail:nth-child(6) {
        grid-column: span 6;
        flex-direction: column;
    }

    .service-detail:nth-child(6) .service-gallery,
    .service-detail:nth-child(6) .service-detail-content {
        width: 100%;
    }

    .service-detail:nth-child(8),
    .service-detail:nth-child(9),
    .service-detail:nth-child(10) {
        grid-column: span 3;
    }

    .service-detail:nth-child(9) {
        grid-column: span 3;
    }

    /* Modal responsive - Tablet */
    .service-detail-modal {
        padding: 0;
    }

    .service-detail-modal-content {
        flex-direction: column;
        max-height: 100%;
    }

    .modal-gallery-section {
        width: 100%;
        padding: 30px;
    }

    .modal-main-image {
        aspect-ratio: 16/9;
    }

    .modal-info-section {
        width: 100%;
    }

    .modal-info-content {
        padding: 30px;
    }

    .modal-product-title {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .service-detail-content h2 {
        font-size: 18px;
    }

    .price-value {
        font-size: 24px;
    }

    /* Modal 1024px */
    .service-detail-modal-content {
        max-width: 100%;
        flex-direction: column;
    }

    .modal-gallery-section {
        width: 100%;
        padding: 24px;
    }

    .modal-main-image {
        aspect-ratio: 16/9;
    }

    .modal-info-section {
        width: 100%;
    }

    .modal-info-content {
        padding: 28px;
    }

    .modal-product-title {
        font-size: 26px;
    }

    .modal-product-price {
        font-size: 20px;
    }

    .modal-features-list li {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .services-list-section {
        padding: 40px 0 60px;
    }

    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* ============================================
       MODERN OVERLAY CARDS - Netflix/Apple TV+ Style
       ============================================ */

    /* Reset all cards to overlay style on mobile */
    .service-detail,
    .service-detail:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column !important;
        position: relative;
        background: #000;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 3/4;
        min-height: 220px;
    }

    /* Image fills entire card */
    .service-detail .service-image-container,
    .service-detail:nth-child(n) .service-image-container {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important;
    }

    .service-detail .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-detail:hover .service-image-container img {
        transform: scale(1.05);
    }

    /* Gradient overlay for text readability */
    .service-detail .service-image-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.9) 100%
        );
        pointer-events: none;
    }

    /* Hide gallery overlay icon on mobile */
    .service-detail .service-gallery-overlay {
        display: none !important;
    }

    /* Content overlaid at bottom */
    .service-detail .service-detail-content,
    .service-detail:nth-child(n) .service-detail-content {
        position: absolute !important;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        padding: 16px !important;
        background: transparent;
        z-index: 5;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Type Badge (Remoto/Presencial) - positioned at top */
    .service-detail .service-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        right: auto;
        background: rgba(255, 255, 255, 0.95);
        color: #000;
        font-size: 9px;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 10;
        backdrop-filter: blur(10px);
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .service-detail .service-badge i {
        font-size: 9px;
    }

    .service-detail .service-badge.badge-remote {
        background: rgba(34, 197, 94, 0.95);
        color: #fff;
    }

    .service-detail .service-badge.badge-presential {
        background: rgba(59, 130, 246, 0.95);
        color: #fff;
    }

    /* Title - Compact, 2 lines max */
    .service-detail-content h2 {
        font-size: 13px !important;
        font-weight: 700;
        margin-bottom: 0 !important;
        color: #ffffff !important;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Hide description on mobile cards */
    .service-detail-content > p {
        display: none !important;
    }

    /* Price info - compact inline style */
    .service-pricing {
        margin-bottom: 0 !important;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .price-label {
        font-size: 9px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 500;
    }

    .price-value {
        font-size: 14px !important;
        font-weight: 700;
        color: #ffffff !important;
    }

    /* Hide features list */
    .service-features {
        display: none !important;
    }

    /* Button - Small elegant style */
    .service-detail-buttons {
        margin-top: 8px;
    }

    .service-detail .btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.95) !important;
        color: #000 !important;
        border-radius: 8px !important;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        backdrop-filter: blur(10px);
        border: none !important;
    }

    .service-detail .btn:hover {
        background: #ffffff !important;
        transform: translateY(-1px);
    }

    .service-detail .btn i {
        font-size: 10px;
    }

    /* Hide gallery thumbnails */
    .service-gallery-thumbnails {
        display: none !important;
    }

    /* Reset colored cards - all should be overlay style */
    .service-detail:nth-child(2),
    .service-detail:nth-child(5),
    .service-detail:nth-child(9) {
        background: #000;
    }

    .service-detail:nth-child(2) .service-detail-content h2,
    .service-detail:nth-child(2) .price-value,
    .service-detail:nth-child(5) .service-detail-content h2,
    .service-detail:nth-child(5) .price-value,
    .service-detail:nth-child(9) .service-detail-content h2,
    .service-detail:nth-child(9) .price-value {
        color: #ffffff !important;
    }

    .service-detail:nth-child(2) .price-label,
    .service-detail:nth-child(5) .price-label,
    .service-detail:nth-child(9) .price-label {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .service-detail:nth-child(2) .btn,
    .service-detail:nth-child(5) .btn,
    .service-detail:nth-child(9) .btn {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #000 !important;
    }

    /* Hide decorative elements */
    .service-detail::after,
    .service-detail::before {
        display: none !important;
    }

    /* Modal mobile 768px */
    .service-detail-modal {
        padding: 0;
    }

    .service-detail-modal-content {
        max-height: 100%;
        border-radius: 0;
        flex-direction: column;
    }

    .modal-gallery-section {
        width: 100%;
        padding: 20px;
    }

    .modal-main-image {
        aspect-ratio: 4/3;
    }

    .modal-thumbnails {
        gap: 8px;
    }

    .modal-thumb {
        width: 60px;
        height: 60px;
    }

    .service-detail-modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        z-index: 1000;
    }

    .modal-info-section {
        width: 100%;
    }

    .modal-info-content {
        padding: 24px;
    }

    .modal-product-title {
        font-size: 24px;
    }

    .modal-product-price {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .modal-product-description p {
        font-size: 14px;
    }

    .modal-features-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .modal-cta-section {
        margin-top: 16px;
    }

    .modal-btn-primary,
    .modal-btn-whatsapp {
        padding: 14px 20px;
        font-size: 13px;
    }

    .modal-info-grid {
        gap: 8px;
    }

    .modal-info-item {
        padding: 8px 0;
    }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 13px;
    }

    /* Related Services - Mobile 768px */
    .modal-related-services {
        display: block;
        padding: 20px 16px;
        padding-bottom: 100px; /* Extra space for fixed bottom bar */
    }

    .related-services-header h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-service-info h4 {
        font-size: 12px;
    }

    .related-service-info .price {
        font-size: 14px;
    }

    .related-service-info {
        padding: 10px;
    }

    .service-modal-main-row {
        flex-direction: column;
    }

    /* Hide desktop actions, show mobile fixed actions */
    .service-modal-actions-desktop {
        display: none !important;
    }

    .service-actions-section,
    .service-whatsapp-section {
        display: none !important;
    }

    .service-modal-actions-mobile {
        display: flex !important;
    }

    /* Hide share section on mobile */
    .service-share-section {
        display: none;
    }

    /* Adjust badge and actions on mobile */
    .service-image-badge {
        padding: 4px 8px;
        font-size: 9px;
    }

    .service-image-actions {
        gap: 6px;
    }

    .service-image-action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Add padding for fixed bottom bar */
    .modal-related-services {
        padding-bottom: 90px;
    }

    .service-modal-scroll {
        padding-bottom: 80px;
    }

    /* Service Modal - Product Style - Mobile 768px */
    .service-modal-main {
        flex-direction: column;
        padding: 20px 16px;
        gap: 24px;
    }

    .service-modal-gallery-section {
        width: 100%;
        padding: 20px;
        border-radius: 12px;
    }

    /* eBay style gallery - mobile */
    .service-gallery-layout {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .service-thumbnails-vertical {
        width: 100%;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 6px;
        padding-right: 0;
        padding-bottom: 4px;
    }

    .service-thumbnails-vertical .service-modal-thumb {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .service-main-image-container {
        max-height: 400px;
        aspect-ratio: 1;
        padding: 12px;
    }

    .service-main-image {
        max-width: 100%;
        max-height: 100%;
    }

    .service-nav-arrow {
        opacity: 1;
        width: 32px;
        height: 32px;
    }

    .service-modal-thumbnails {
        gap: 8px;
        padding: 12px 0;
    }

    .service-modal-thumb {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

    .service-modal-info-section {
        width: 100%;
    }

    .service-modal-info-content {
        padding: 0;
    }

    .service-modal-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service-modal-price-section {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .service-modal-price-section .service-modal-price {
        font-size: 22px;
    }

    .service-modal-description {
        margin-bottom: 16px;
    }

    .service-modal-description p {
        font-size: 14px;
    }

    .service-modal-features {
        margin-bottom: 16px;
    }

    .service-modal-features .service-modal-info-item {
        padding: 6px 0;
    }

    .service-modal-features .service-modal-info-item .info-value {
        font-size: 13px;
    }

    .service-modal-badges {
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .service-modal-badges .service-modal-info-item {
        padding: 6px 10px;
    }

    .service-modal-badges .service-modal-info-item .info-value {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - Small Mobile
   ============================================ */

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .page-hero .section-tag {
        font-size: 10px;
        padding: 6px 12px;
    }

    .services-list-section {
        padding: 30px 0 50px;
    }

    .services-grid-wrapper {
        gap: 10px;
    }

    /* Smaller overlay cards for small mobile */
    .service-detail,
    .service-detail:nth-child(n) {
        border-radius: 12px;
        min-height: 180px;
    }

    /* Badge smaller */
    .service-detail .service-badge {
        top: 8px;
        left: 8px;
        font-size: 8px;
        padding: 4px 8px;
        border-radius: 5px;
    }

    .service-detail .service-badge i {
        font-size: 8px;
    }

    /* Content more compact */
    .service-detail .service-detail-content,
    .service-detail:nth-child(n) .service-detail-content {
        padding: 12px !important;
        gap: 6px;
    }

    /* Smaller title */
    .service-detail-content h2 {
        font-size: 12px !important;
    }

    /* Smaller price */
    .price-value {
        font-size: 12px !important;
    }

    /* Smaller button */
    .service-detail .btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
        border-radius: 6px !important;
    }

    .service-detail .btn i {
        font-size: 8px;
    }

    /* Hide button text on very small screens, show only arrow */
    .service-detail-buttons {
        margin-top: 6px;
    }

    /* Modal small mobile 480px */
    .service-detail-modal {
        padding: 0;
    }

    .service-detail-modal-content {
        border-radius: 0;
        max-height: 100%;
    }

    .modal-gallery-section {
        padding: 16px;
    }

    .modal-main-image {
        aspect-ratio: 16/10;
    }

    .modal-thumbnails {
        display: none;
    }

    .service-detail-modal-close {
        position: fixed;
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: 10px;
        right: 10px;
        z-index: 1000;
    }

    .modal-info-content {
        padding: 20px;
    }

    .modal-product-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .modal-product-price {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .modal-product-description {
        margin-bottom: 24px;
    }

    .modal-product-description p {
        font-size: 13px;
        line-height: 1.7;
    }

    .modal-section-title {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .modal-features-section {
        margin-bottom: 24px;
    }

    .modal-features-list li {
        font-size: 12px;
        padding: 5px 0;
        gap: 10px;
    }

    .modal-features-list li::before {
        width: 5px;
        height: 5px;
    }

    .modal-cta-section {
        margin-top: 12px;
        gap: 8px;
    }

    .modal-btn-primary,
    .modal-btn-whatsapp {
        padding: 12px 16px;
        font-size: 12px;
    }

    .modal-extra-info {
        padding-top: 16px;
    }

    .modal-info-item {
        padding: 6px 0;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 12px;
    }

    /* Related Services - Small Mobile 480px */
    .modal-related-services {
        padding: 16px 12px;
        padding-bottom: 100px;
    }

    .related-services-header h3 {
        font-size: 14px;
    }

    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .related-service-info {
        padding: 8px;
    }

    .related-service-info h4 {
        font-size: 11px;
    }

    .related-service-info .price {
        font-size: 12px;
    }

    /* Mobile actions small screen */
    .service-modal-actions-mobile {
        padding: 10px 12px;
    }

    .service-modal-actions-mobile .mobile-btn-whatsapp {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .service-modal-actions-mobile .mobile-btn-primary {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Service Modal - Product Style - Small Mobile 480px */
    .service-modal-main {
        padding: 16px 12px;
        gap: 16px;
    }

    .service-modal-gallery-section {
        padding: 16px;
    }

    .service-main-image-container {
        max-height: 320px;
        aspect-ratio: 1;
        padding: 10px;
    }

    .service-main-image {
        max-width: 100%;
        max-height: 100%;
    }

    /* Mobile badge and actions */
    .service-image-badge {
        top: 8px;
        left: 8px;
        padding: 3px 6px;
        font-size: 8px;
        gap: 4px;
    }

    .service-image-badge i {
        font-size: 8px;
    }

    .service-image-actions {
        top: 8px;
        right: 8px;
        gap: 4px;
    }

    .service-image-action-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    /* Fullscreen adjustments for mobile */
    .service-fullscreen-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .service-fullscreen-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .service-fullscreen-prev {
        left: 10px;
    }

    .service-fullscreen-next {
        right: 10px;
    }

    .service-image-fullscreen img {
        max-width: 95%;
        max-height: 80%;
    }

    .service-thumbnails-vertical {
        display: none;
    }

    .service-modal-thumbnails {
        display: none;
    }

    .service-modal-title {
        font-size: 18px;
    }

    .service-modal-price-section {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .service-modal-price-section .service-modal-price {
        font-size: 18px;
    }

    .service-modal-description p {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-modal-features .service-modal-info-item i {
        font-size: 14px;
    }

    .service-modal-features .service-modal-info-item .info-value {
        font-size: 12px;
    }

    .service-modal-badges .service-modal-info-item {
        padding: 5px 8px;
    }

    .service-modal-badges .service-modal-info-item i {
        font-size: 12px;
    }

    .service-modal-badges .service-modal-info-item .info-value {
        font-size: 11px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-detail:nth-child(1) { animation-delay: 0.1s; }
.service-detail:nth-child(2) { animation-delay: 0.15s; }
.service-detail:nth-child(3) { animation-delay: 0.2s; }
.service-detail:nth-child(4) { animation-delay: 0.25s; }
.service-detail:nth-child(5) { animation-delay: 0.3s; }
.service-detail:nth-child(6) { animation-delay: 0.35s; }
.service-detail:nth-child(7) { animation-delay: 0.4s; }
.service-detail:nth-child(8) { animation-delay: 0.45s; }
.service-detail:nth-child(9) { animation-delay: 0.5s; }
.service-detail:nth-child(10) { animation-delay: 0.55s; }

/* Image transition */
.service-gallery-main img {
    transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PERSISTENT SEARCH BAR - Clean Minimal Style
   ============================================ */

.persistent-search-section {
    position: fixed;
    top: 80px; /* More space below header */
    left: 0;
    right: 0;
    z-index: 150;
    background: #ffffff;
    padding: 20px 16px 14px 16px;
    border-bottom: 1px solid #e0e0e0;
}

/* Hide persistent search on tablet/mobile - header has search */
@media (max-width: 1023px) {
    .persistent-search-section {
        display: none;
    }
}

/* Add spacing to content below the fixed search section */
.promo-banner-slider {
    margin-top: 190px; /* Space for fixed search + chips */
}

@media (max-width: 1023px) {
    .promo-banner-slider {
        margin-top: 0; /* No extra margin on tablet/mobile */
    }
}

/* Hide the entire toolbar since we have persistent search above */
.services-toolbar-wrapper {
    display: none !important;
}

.services-toolbar {
    display: none !important;
}

.services-toolbar-placeholder {
    display: none !important;
}

.persistent-search-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.persistent-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border-radius: 10px;
    border: none;
    transition: all 0.2s ease;
}

.persistent-search-wrapper:focus-within {
    background: #e8e8e8;
}

.persistent-search-icon {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}

.persistent-search-input {
    width: 100%;
    height: 44px;
    padding: 10px 80px 10px 38px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #333;
    outline: none;
}

.persistent-search-input::placeholder {
    color: #888;
}

.persistent-search-clear {
    position: absolute;
    right: 44px;
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    font-size: 14px;
    transition: all 0.2s ease;
}

.persistent-search-clear:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #333;
}

.persistent-search-filter-btn {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
}

.persistent-search-filter-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #333;
}

/* Filter Chips - Clean Style */
.persistent-filter-chips {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.persistent-filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-chip i {
    font-size: 13px;
    color: #666;
}

.filter-chip:hover {
    border-color: #ccc;
    background: #f8f8f8;
}

.filter-chip.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.filter-chip.active i {
    color: #ffffff;
}

/* Persistent Search Dropdown */
.persistent-search-dropdown {
    position: absolute;
    top: 52px; /* Right below search input (46px) + small gap */
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 200;
}

.persistent-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.persistent-search-results {
    padding: 8px 0;
}

/* Search Result Items */
.persistent-search-dropdown .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
}

.persistent-search-dropdown .search-result-item:last-child {
    border-bottom: none;
}

.persistent-search-dropdown .search-result-item:hover,
.persistent-search-dropdown .search-result-item.active {
    background: #f8f8f8;
}

.persistent-search-dropdown .search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.persistent-search-dropdown .search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.persistent-search-dropdown .search-result-info {
    flex: 1;
    min-width: 0;
}

.persistent-search-dropdown .search-result-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.persistent-search-dropdown .search-result-name mark {
    background: #ffeb3b;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.persistent-search-dropdown .search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.persistent-search-dropdown .search-result-price {
    color: #000;
    font-weight: 600;
}

.persistent-search-dropdown .search-result-type {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.persistent-search-dropdown .search-result-type.type-remote {
    background: #e3f2fd;
    color: #1976d2;
}

.persistent-search-dropdown .search-result-type.type-presential {
    background: #dcfce7;
    color: #16a34a;
}

.persistent-search-dropdown .search-result-type.type-in_store {
    background: #fef3c7;
    color: #d97706;
}

.persistent-search-dropdown .search-result-arrow {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}

/* No results state */
.persistent-search-dropdown .search-no-results {
    padding: 24px 16px;
    text-align: center;
    color: #888;
}

.persistent-search-dropdown .search-no-results i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.5;
}

/* View all results */
.persistent-search-dropdown .search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid #eee;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.persistent-search-dropdown .search-view-all:hover {
    background: #f5f5f5;
}

/* Banner hidden state when searching */
.promo-banner-slider.search-active {
    display: none !important;
}

/* Adjust services section when banner is hidden */
section.services-list-section.search-active {
    margin-top: 0 !important;
    padding: 220px 0 100px !important; /* Space for fixed search + chips */
}

section.services-list-section.search-active .services-grid-wrapper {
    margin-top: 20px;
}

@media (max-width: 768px) {
    section.services-list-section.search-active {
        padding: 200px 0 60px !important; /* Space for fixed search + chips on mobile */
    }
}

@media (max-width: 480px) {
    section.services-list-section.search-active {
        padding: 190px 0 50px !important; /* Space for fixed search + chips on small mobile */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .persistent-search-section {
        top: 70px; /* More space below mobile header */
        padding: 18px 12px 12px 12px;
    }

    .persistent-search-input {
        height: 42px;
        font-size: 14px;
    }

    .persistent-search-dropdown {
        max-height: 350px;
    }

    .persistent-search-dropdown .search-result-item {
        padding: 10px 12px;
    }

    .persistent-search-dropdown .search-result-image {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   DESKTOP BREADCRUMB - Services Page
   ============================================ */

.desktop-breadcrumb {
    display: none;
    background: #f8f8f8;
    padding: 12px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.desktop-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
}

.desktop-breadcrumb-inner a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.desktop-breadcrumb-inner a:hover {
    color: #000;
}

.desktop-breadcrumb-inner .separator {
    margin: 0 10px;
    color: #ccc;
}

/* ============================================
   DESKTOP HERO BANNER - Services Page
   ============================================ */

.desktop-services-hero {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.desktop-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px 100px;
}

.desktop-services-hero .desktop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-services-hero .desktop-hero-text {
    flex: 1;
    color: #fff;
}

.desktop-services-hero .desktop-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.desktop-services-hero .desktop-hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
}

.desktop-services-hero .desktop-hero-image {
    position: relative;
    width: 400px;
    height: 250px;
}

.desktop-services-hero .desktop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   DESKTOP PROFESSIONAL LAYOUT - Services Page
   ============================================ */

/* Hide announcement bar on mobile for services page */
@media (max-width: 1023px) {
    body .announcement-bar {
        display: none !important;
    }
}

/* Desktop Announcement Bar - Above Header */
@media (min-width: 1024px) {
    .announcement-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        margin-top: 0 !important;
        padding: 10px 0;
        background: #000000;
    }

    .announcement-item {
        font-size: 13px;
        font-weight: 500;
    }

    /* Desktop header positioned below announcement bar */
    .header.header-minimal .header-content.desktop-only {
        position: fixed;
        top: 38px; /* Height of announcement bar */
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        border-bottom: 1px solid #e5e5e5;
        padding: 16px 40px;
    }
}

/* ============================================
   DESKTOP FILTER BAR - Services Page
   ============================================ */

/* Desktop Filter Bar - Professional Style */
.desktop-filter-bar {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 40px;
    position: sticky;
    top: 118px; /* announcement bar (38px) + header (80px) */
    z-index: 100;
}

.desktop-filter-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
    height: 52px;
}

/* Filter Dropdown Buttons */
.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-dropdown-btn:hover {
    background: #f5f5f5;
}

.filter-dropdown-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.filter-dropdown-btn.active i {
    transform: rotate(180deg);
}

.filter-dropdown-btn:first-child {
    padding-left: 0;
}

/* Filter Dropdown Panel */
.filter-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 40px;
    display: none;
    animation: filterPanelSlide 0.2s ease;
}

.filter-dropdown-panel.active {
    display: block;
}

@keyframes filterPanelSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-options-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.filter-option-item {
    padding: 10px 16px;
    background: #f8f8f8;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-option-item:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.filter-option-item.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Desktop Search Container */
.desktop-search-container {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding-right: 20px;
    border-right: 1px solid #e5e5e5;
}

.desktop-search-input {
    width: 200px;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    background: #f8f8f8;
    transition: all 0.2s ease;
}

.desktop-search-input:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #fff;
    width: 280px;
}

.desktop-search-icon {
    position: absolute;
    left: 12px;
    color: #888;
    font-size: 14px;
}

/* Clear Filters Button */
.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-left: auto;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    background: #c0392b;
}

/* ============================================
   SERVICES SPECIFIC HERO STYLES
   ============================================ */

/* Services showcase - different accent color */
.services-showcase {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
}

.desktop-services-hero-section .showcase-badge {
    background: #2563eb;
}

/* ============================================
   DESKTOP STYLES - Services Page (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    /* Show desktop filter bar (services page) */
    .desktop-filter-bar {
        display: block;
    }

    /* Hide old breadcrumb and hero */
    .desktop-breadcrumb,
    .desktop-services-hero {
        display: none;
    }

    /* Hide mobile elements on desktop */
    .persistent-search-section,
    .mobile-bottom-nav,
    .services-toolbar-wrapper,
    .services-toolbar-placeholder {
        display: none !important;
    }

    /* Show promo banner slider on desktop (services page only) */
    .page-services #promoBannerSlider {
        display: block !important;
        height: 420px;
        margin-top: 0;
        background: #111;
    }

    /* Split layout: text left, image right */
    #promoBannerSlider .promo-banner-slide {
        display: flex;
        flex-direction: row;
    }

    #promoBannerSlider .promo-banner-content {
        width: 45%;
        flex-shrink: 0;
        order: 1;
        max-width: none;
        padding: 48px 50px;
        justify-content: center;
        background: linear-gradient(160deg, #111 0%, #1a1a1a 50%, #222 100%);
        z-index: 2;
    }

    #promoBannerSlider .promo-banner-bg {
        position: relative;
        width: 55%;
        flex-shrink: 0;
        order: 2;
    }

    #promoBannerSlider .promo-banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Subtle edge gradient on the image side for smooth blend */
    #promoBannerSlider .promo-banner-bg-gradient {
        background: linear-gradient(
            90deg,
            #1a1a1a 0%,
            rgba(26, 26, 26, 0.4) 15%,
            transparent 40%
        ) !important;
    }

    /* Banner text styling - Intime brand fonts & readable colors */
    #promoBannerSlider .promo-banner-content {
        color: #fff;
    }

    #promoBannerSlider .promo-banner-badge {
        background: var(--color-primary, #e87722);
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
    }

    #promoBannerSlider .promo-banner-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        text-shadow: none;
        letter-spacing: 0.5px;
    }

    #promoBannerSlider .promo-banner-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        opacity: 1;
    }

    #promoBannerSlider .promo-banner-price {
        margin-bottom: 24px;
    }

    #promoBannerSlider .promo-banner-price-current {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #fff;
        text-shadow: none;
    }

    #promoBannerSlider .promo-banner-btn {
        background: var(--color-primary, #e87722);
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 14px 28px;
        border-radius: 6px;
        letter-spacing: 0.3px;
    }

    /* Navigation arrows repositioned for split layout */
    #promoBannerSlider .promo-banner-prev {
        left: calc(45% - 50px);
    }

    #promoBannerSlider .promo-banner-next {
        right: 20px;
    }

    /* Dots centered under the image area */
    #promoBannerSlider .promo-banner-dots {
        left: 72.5%;
    }

    /* Hide separate desktop filter bar - filters are in the header nav-filters */
    .desktop-filter-bar {
        display: none !important;
    }

    /* Banner hides smoothly when filtering/searching on desktop */
    #promoBannerSlider.search-active {
        display: none !important;
    }

    section.services-list-section.search-active {
        padding: 20px 0 80px !important;
    }

    /* Hide static hero and text sections - replaced by promo banner */
    .desktop-services-hero-section,
    .services-section-header,
    .services-stats-row {
        display: none !important;
    }

    /* Page Hero - Desktop (hide old one) */
    .page-hero {
        display: none;
        padding: 200px 0 60px; /* Space for fixed header + announcement bar */
        background: #f8f8f8;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Services Section - Desktop */
    .services-list-section {
        padding: 0 0 80px;
        background: #fff;
    }

    .services-list-section .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    /* Services Grid - Desktop: Clean 4-column grid like products */
    .services-grid-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-rows: auto !important;
        gap: 20px !important;
        background: transparent !important;
    }

    /* Reset bento grid card styles for uniform grid */
    .service-detail {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        flex-direction: column !important;
        background: #fff !important;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .service-detail:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    /* Remove bento decorations */
    .service-detail::before,
    .service-detail::after {
        display: none !important;
        content: none !important;
    }

    /* Reset all nth-child specific styles */
    .service-detail:nth-child(1),
    .service-detail:nth-child(2),
    .service-detail:nth-child(3),
    .service-detail:nth-child(4),
    .service-detail:nth-child(5),
    .service-detail:nth-child(6),
    .service-detail:nth-child(7),
    .service-detail:nth-child(8),
    .service-detail:nth-child(9) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        flex-direction: column !important;
        background: #fff !important;
    }

    .service-detail:nth-child(n) .service-gallery,
    .service-detail:nth-child(n) .service-image-container {
        width: 100% !important;
        height: 200px !important;
    }

    .service-detail:nth-child(n) .service-detail-content {
        width: 100% !important;
        padding: 20px !important;
    }

    .service-detail:nth-child(n) .service-detail-content h2,
    .service-detail:nth-child(n) .service-detail-content p,
    .service-detail:nth-child(n) .price-value,
    .service-detail:nth-child(n) .price-label {
        color: inherit !important;
    }

    .service-detail:nth-child(n) .btn {
        background: #000 !important;
        color: #fff !important;
    }

    /* Service image container */
    .service-image-container {
        width: 100% !important;
        height: 200px !important;
        overflow: hidden;
    }

    .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-detail:hover .service-image-container img {
        transform: scale(1.05);
    }

    /* Service content */
    .service-detail-content {
        padding: 20px !important;
    }

    .service-detail-content h2 {
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        color: #000 !important;
    }

    .service-pricing {
        margin-bottom: 15px !important;
    }

    .price-value {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #000 !important;
    }

    /* Category Chips - Hidden on desktop (using filter bar instead) */
    .category-chips-wrapper {
        display: none !important;
    }

    .category-chip.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .category-chip i {
        margin-right: 6px;
    }

    /* Toolbar Options - Desktop */
    .toolbar-options {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .results-count {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }

    .sort-select {
        padding: 10px 35px 10px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 14px;
        background: #fff;
        cursor: pointer;
        min-width: 180px;
    }

    /* Services Grid - Desktop 4 columns */
    .services-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    /* Service Card - Desktop clean style */
    .service-detail {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-detail:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .service-image-container {
        height: 180px;
        background: #f8f8f8;
    }

    .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .service-detail:hover .service-image-container img {
        transform: scale(1.05);
    }

    .service-detail-content {
        padding: 20px;
    }

    .service-detail-content h2 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #000;
        line-height: 1.3;
    }

    .service-detail-content > p {
        font-size: 13px;
        color: #666;
        margin-bottom: 15px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Hide features list on desktop grid view */
    .service-features {
        display: none;
    }

    .service-pricing {
        margin-bottom: 15px;
    }

    .price-label {
        font-size: 12px;
        color: #888;
    }

    .price-value {
        font-size: 18px;
        font-weight: 700;
        color: #000;
    }

    /* Service buttons - Desktop */
    .service-detail-buttons {
        display: flex;
        gap: 8px;
    }

    .service-detail-buttons .btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 13px;
        font-weight: 500;
        border-radius: 6px;
    }

    .service-detail-buttons .btn-primary {
        background: #000;
        color: #fff;
        border: none;
    }

    .service-detail-buttons .btn-primary:hover {
        background: #333;
    }

    .service-detail-buttons .btn-outline {
        background: transparent;
        color: #000;
        border: 1px solid #000;
    }

    .service-detail-buttons .btn-outline:hover {
        background: #000;
        color: #fff;
    }

    /* Badge styling */
    .service-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #000;
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* Disable sticky toolbar on desktop */
    .services-toolbar-wrapper.is-sticky .services-toolbar {
        position: relative;
        top: auto;
        box-shadow: none;
        animation: none;
    }
}

/* ============================================
   MONOLOG-INSPIRED SERVICE CARDS V2
   Premium Design - True Monolog Aesthetic
   ============================================ */

/* Playfair Display already imported via styles.css - no duplicate import needed */

/* Section Header - Monolog Style */
.services-section-header {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 20px;
}

.services-section-header .header-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    color: #666;
    margin-bottom: -5px;
    display: block;
}

.services-section-header .header-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #0a0a0a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.services-section-header .header-subtitle {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Stats Row - Like Monolog */
.services-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 48px;
    font-weight: 400;
    color: #ccc;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    max-width: 120px;
}

/* Enable new design - Editorial Style */
.services-grid-wrapper.monolog-style {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0;
    max-width: 100%;
    margin: 0;
}

/* Service Card - Editorial Magazine Style */
.services-grid-wrapper.monolog-style .service-detail {
    width: 100%;
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid-wrapper.monolog-style .service-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating backgrounds */
.services-grid-wrapper.monolog-style .service-detail:nth-child(even) {
    background: #faf9f7;
}

/* Alternating layouts - flip content position */
.services-grid-wrapper.monolog-style .service-detail:nth-child(even) {
    direction: rtl;
}

.services-grid-wrapper.monolog-style .service-detail:nth-child(even) > * {
    direction: ltr;
}

/* Large Decorative Number - Full Height Style */
.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, 0.04);
    line-height: 0.8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    z-index: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.services-grid-wrapper.monolog-style .service-detail:nth-child(even) .service-number {
    left: auto;
    right: 40px;
}

.services-grid-wrapper.monolog-style .service-detail:hover .service-number {
    color: rgba(0, 0, 0, 0.08);
    transform: translateY(-50%) scale(1.05);
}

/* Service Visual Area - Decorative */
.services-grid-wrapper.monolog-style .service-visual-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f7f6 0%, #f0efee 100%);
    border-radius: 20px;
    overflow: hidden;
}

.services-grid-wrapper.monolog-style .service-detail:nth-child(even) .service-visual-area {
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.service-visual-area .visual-icon {
    font-size: 120px;
    color: rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
}

.services-grid-wrapper.monolog-style .service-detail:hover .visual-icon {
    transform: scale(1.1) rotate(5deg);
    color: rgba(0, 0, 0, 0.1);
}

.service-visual-area .visual-number {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

/* Service Content Wrapper */
.services-grid-wrapper.monolog-style .service-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 500px;
}

/* Title - Editorial Style */
.services-grid-wrapper.monolog-style .service-title-wrapper {
    margin-bottom: 16px;
}

.services-grid-wrapper.monolog-style .service-title-wrapper .title-category {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

.services-grid-wrapper.monolog-style .service-title-wrapper .title-name {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    color: #0a0a0a;
    display: block;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* Description - Editorial */
.services-grid-wrapper.monolog-style .service-description {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    max-width: 100%;
}

/* Features/Tags - Editorial Pill Style */
.services-grid-wrapper.monolog-style .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.services-grid-wrapper.monolog-style .service-tag {
    font-size: 13px;
    color: #555;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

.services-grid-wrapper.monolog-style .service-detail:hover .service-tag {
    border-color: #0a0a0a;
    color: #0a0a0a;
}

/* Price Section - Editorial Style */
.services-grid-wrapper.monolog-style .service-price-section {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.services-grid-wrapper.monolog-style .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -1px;
}

.services-grid-wrapper.monolog-style .price-suffix {
    font-size: 15px;
    color: #888;
}

/* CTA Button - Editorial Style */
.services-grid-wrapper.monolog-style .service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #0a0a0a;
    text-decoration: none;
    margin-top: 30px;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid-wrapper.monolog-style .service-cta:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-grid-wrapper.monolog-style .service-cta::after {
    content: '\2192';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-grid-wrapper.monolog-style .service-detail:hover .service-cta::after {
    transform: translateX(5px);
}

/* Hide old elements in monolog style */
.services-grid-wrapper.monolog-style .service-image-container,
.services-grid-wrapper.monolog-style .service-badge,
.services-grid-wrapper.monolog-style .service-detail-buttons {
    display: none !important;
}

/* Price - Elegant */
.services-grid-wrapper.monolog-style .service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-grid-wrapper.monolog-style .price-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-grid-wrapper.monolog-style .price-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #0f0f0f;
}

/* CTA Button - Monolog */
.services-grid-wrapper.monolog-style .service-detail-buttons {
    display: flex;
    gap: 12px;
}

.services-grid-wrapper.monolog-style .service-detail-buttons .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.services-grid-wrapper.monolog-style .service-detail-buttons .btn-primary {
    background: #0f0f0f;
    color: #fff;
    border: none;
}

.services-grid-wrapper.monolog-style .service-detail-buttons .btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* View Details Link */
.services-grid-wrapper.monolog-style .service-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.services-grid-wrapper.monolog-style .service-view-details i {
    transition: transform 0.3s ease;
}

.services-grid-wrapper.monolog-style .service-detail:hover .service-view-details i {
    transform: translateX(4px);
}

/* ============================================
   EDITORIAL RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1200px) {
    .services-section-header .header-title {
        font-size: 40px;
    }

    .services-section-header .header-label {
        font-size: 28px;
    }

    .services-stats-row {
        gap: 50px;
    }

    .stat-number {
        font-size: 40px;
    }

    .services-grid-wrapper.monolog-style .service-detail {
        padding: 60px 40px;
        min-height: 60vh;
        gap: 40px;
    }

    .services-grid-wrapper.monolog-style .service-title-wrapper .title-name {
        font-size: 36px;
    }

    .service-number {
        font-size: 150px;
    }

    .services-grid-wrapper.monolog-style .service-visual-area {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .services-grid-wrapper.monolog-style .service-detail {
        grid-template-columns: 1fr !important;
        min-height: auto;
        padding: 60px 30px;
    }

    .services-grid-wrapper.monolog-style .service-detail:nth-child(even) {
        direction: ltr;
    }

    .services-grid-wrapper.monolog-style .service-visual-area {
        min-height: 300px;
        order: -1;
    }

    .services-grid-wrapper.monolog-style .service-content-wrapper {
        max-width: 100%;
    }

    .service-number {
        font-size: 120px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .services-grid-wrapper.monolog-style .service-detail:nth-child(even) .service-number {
        right: auto;
    }

    .services-stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* ============================================
   EDITORIAL RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .services-section-header {
        padding: 40px 20px 30px;
    }

    .services-section-header .header-label {
        font-size: 22px;
    }

    .services-section-header .header-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .services-section-header .header-subtitle {
        font-size: 14px;
    }

    .services-stats-row {
        gap: 20px;
        padding: 30px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .services-grid-wrapper.monolog-style .service-detail {
        padding: 50px 20px;
    }

    .services-grid-wrapper.monolog-style .service-visual-area {
        min-height: 250px;
        border-radius: 16px;
    }

    .visual-icon {
        font-size: 80px !important;
    }

    .service-number {
        font-size: 80px;
    }

    .services-grid-wrapper.monolog-style .service-title-wrapper .title-category {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .services-grid-wrapper.monolog-style .service-title-wrapper .title-name {
        font-size: 28px;
    }

    .services-grid-wrapper.monolog-style .service-description {
        font-size: 15px;
    }

    .services-grid-wrapper.monolog-style .service-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .services-grid-wrapper.monolog-style .price-amount {
        font-size: 36px;
    }

    .services-grid-wrapper.monolog-style .service-cta {
        width: 100%;
        padding: 16px 30px;
        font-size: 13px;
    }
}

/* ============================================
   BENTO CREATIVE LAYOUT V3
   Truly Asymmetric, Non-Linear Design
   Inspired by TD-Monolog - Premium Aesthetic
   ============================================ */

/* Activate Bento Layout */
.services-grid-wrapper.bento-style {
    display: block !important;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

/* ============================================
   DESKTOP GRID LAYOUT - Similar to Products
   ============================================ */

/* Desktop Services Grid Container */
.services-desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
}

/* Desktop Service Card */
.service-grid-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: serviceCardFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.service-grid-card:nth-child(1) { animation-delay: 0.1s; }
.service-grid-card:nth-child(2) { animation-delay: 0.15s; }
.service-grid-card:nth-child(3) { animation-delay: 0.2s; }
.service-grid-card:nth-child(4) { animation-delay: 0.25s; }
.service-grid-card:nth-child(5) { animation-delay: 0.3s; }
.service-grid-card:nth-child(6) { animation-delay: 0.35s; }
.service-grid-card:nth-child(7) { animation-delay: 0.4s; }
.service-grid-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes serviceCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gradient border effect on top */
.service-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000, #333);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.service-grid-card:hover::before {
    opacity: 1;
}

/* Different gradient colors for each card */
.service-grid-card:nth-child(1)::before { background: linear-gradient(90deg, #667eea, #764ba2); }
.service-grid-card:nth-child(2)::before { background: linear-gradient(90deg, #f093fb, #f5576c); }
.service-grid-card:nth-child(3)::before { background: linear-gradient(90deg, #4facfe, #00f2fe); }
.service-grid-card:nth-child(4)::before { background: linear-gradient(90deg, #43e97b, #38f9d7); }
.service-grid-card:nth-child(5)::before { background: linear-gradient(90deg, #fa709a, #fee140); }
.service-grid-card:nth-child(6)::before { background: linear-gradient(90deg, #a18cd1, #fbc2eb); }
.service-grid-card:nth-child(7)::before { background: linear-gradient(90deg, #ff9a9e, #fecfef); }
.service-grid-card:nth-child(8)::before { background: linear-gradient(90deg, #667eea, #764ba2); }

.service-grid-card:hover {
    border-color: transparent;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-grid-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-grid-card:hover .service-grid-card-image img {
    transform: scale(1.1);
}

.service-grid-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
    color: #999;
    font-size: 48px;
}

.service-grid-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-grid-card-content {
    padding: 20px;
}

.service-grid-card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.service-grid-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-grid-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-grid-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.service-grid-card-price {
    font-size: 14px;
    color: #666;
}

.service-grid-card-price span {
    font-weight: 600;
    color: #000;
}

.service-grid-card-btn {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-grid-card-btn:hover {
    background: #333;
}

/* Desktop: Show grid, hide bento */
@media (min-width: 768px) {
    .services-desktop-grid {
        display: grid;
    }
    .bento-container {
        display: none !important;
    }
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-desktop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Large desktop: 4 columns */
@media (min-width: 1200px) {
    .services-desktop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile: Hide grid, show bento */
@media (max-width: 767px) {
    .services-desktop-grid {
        display: none !important;
    }
    .bento-container {
        display: grid !important;
    }
}

/* Bento Container - Creative Grid */
.bento-container {
    display: none; /* Hidden by default on desktop */
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    padding-top: 40px;
}

/* ============================================
   BENTO CARD TYPES - Each Unique
   ============================================ */

/* Base Bento Card */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

/* ============================================
   TYPE 1: HERO CARD - Full Featured
   Takes 8 columns, 2 rows
   ============================================ */
.bento-card.hero {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bento-card.hero .hero-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card.hero .hero-number {
    font-family: 'Playfair Display', serif;
    font-size: 180px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: -40px;
    right: 50px;
    line-height: 1;
    pointer-events: none;
}

.bento-card.hero .hero-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.bento-card.hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.bento-card.hero .hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
}

.bento-card.hero .hero-visual {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero visual with image */
.bento-card.hero .hero-visual.has-image {
    background: none;
}

.bento-card.hero .hero-visual .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

.bento-card.hero:hover .hero-visual .hero-image {
    transform: scale(1.08);
}

.bento-card.hero .hero-visual .hero-icon {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.06);
    transition: all 0.6s ease;
}

.bento-card.hero:hover .hero-icon {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255, 255, 255, 0.12);
}

.bento-card.hero .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: fit-content;
}

.bento-card.hero .hero-cta:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.bento-card.hero .hero-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.bento-card.hero:hover .hero-cta::after {
    transform: translateX(4px);
}

/* ============================================
   TYPE 2: TALL CARD - Vertical Emphasis
   Takes 4 columns, 2 rows
   ============================================ */
.bento-card.tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 480px;
    background: #faf9f7;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.bento-card.tall .tall-number {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-style: italic;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.06);
    line-height: 0.8;
    margin-bottom: 30px;
}

.bento-card.tall .tall-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bento-card.tall .tall-icon-wrapper i {
    font-size: 32px;
    color: #0a0a0a;
}

/* Tall card with image header */
.bento-card.tall.has-image {
    padding: 0;
    overflow: hidden;
}

.bento-card.tall .tall-image-header {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.bento-card.tall .tall-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card.tall:hover .tall-image-header img {
    transform: scale(1.08);
}

.bento-card.tall.has-image .tall-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Ensure text colors in tall card content */
.bento-card.tall.has-image .tall-content .tall-category {
    color: #888;
}

.bento-card.tall.has-image .tall-content .tall-title {
    color: #0a0a0a;
}

.bento-card.tall.has-image .tall-content .tall-desc {
    color: #666;
}

.bento-card.tall.has-image .tall-content .tall-price {
    color: #0a0a0a;
}

.bento-card.tall.has-image .tall-content .tall-cta {
    color: #0a0a0a;
}

.bento-card.tall .tall-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 12px;
}

.bento-card.tall .tall-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.bento-card.tall .tall-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.bento-card.tall .tall-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0a0a0a;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bento-card.tall .tall-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.bento-card.tall .tall-cta i {
    transition: transform 0.3s ease;
}

.bento-card.tall:hover .tall-cta i {
    transform: translateX(6px);
}

/* ============================================
   TYPE 3: WIDE CARD - Horizontal Layout
   Takes 6 columns, 1 row
   ============================================ */
.bento-card.wide {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 260px;
    background: #fff;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.bento-card.wide .wide-visual {
    background: linear-gradient(135deg, #f8f7f6 0%, #f0efee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Wide visual with image */
.bento-card.wide .wide-visual.has-image {
    background: none;
}

.bento-card.wide .wide-visual .wide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.bento-card.wide:hover .wide-visual .wide-image {
    transform: scale(1.08);
}

.bento-card.wide .wide-visual i {
    font-size: 60px;
    color: rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.bento-card.wide:hover .wide-visual i {
    color: rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.bento-card.wide .wide-visual .wide-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.06);
}

.bento-card.wide .wide-content {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card.wide .wide-category {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
}

.bento-card.wide .wide-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.bento-card.wide .wide-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.bento-card.wide .wide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.bento-card.wide .wide-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #0a0a0a;
}

.bento-card.wide .wide-link {
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   TYPE 4: COMPACT CARD - Small Feature
   Takes 4 columns, 1 row
   ============================================ */
.bento-card.compact {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 220px;
    background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.bento-card.compact .compact-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bento-card.compact .compact-icon {
    width: 50px;
    height: 50px;
    background: #0a0a0a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.bento-card.compact .compact-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
}

.bento-card.compact .compact-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.bento-card.compact .compact-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    flex-grow: 1;
}

.bento-card.compact .compact-link {
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

/* ============================================
   TYPE 5: QUOTE CARD - Testimonial Style
   Takes 4 columns, 1 row
   ============================================ */
.bento-card.quote {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 220px;
    background: #0a0a0a;
    color: #fff;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card.quote .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.5;
    margin-bottom: 10px;
}

.bento-card.quote .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.bento-card.quote .quote-author {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
}

/* ============================================
   TYPE 6: FEATURED NUMBER - Typography Focus
   Takes 4 columns, 1 row
   ============================================ */
.bento-card.number-focus {
    grid-column: span 4;
    grid-row: span 1;
    min-height: 220px;
    background: linear-gradient(135deg, #f8f7f6 0%, #fff 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #eee;
}

.bento-card.number-focus .nf-big-number {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 600;
    font-style: italic;
    color: #0a0a0a;
    line-height: 0.9;
    flex-shrink: 0;
}

.bento-card.number-focus .nf-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-card.number-focus .nf-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #0a0a0a;
}

.bento-card.number-focus .nf-subtitle {
    font-size: 13px;
    color: #888;
}

.bento-card.number-focus .nf-link {
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

/* ============================================
   TYPE 7: TEXT ONLY - Minimalist
   Takes 6 columns, 1 row
   ============================================ */
.bento-card.text-only {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 240px;
    background: #fff;
    border: 1px solid #eee;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.bento-card.text-only .to-number {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, 0.04);
    line-height: 0.8;
    flex-shrink: 0;
}

.bento-card.text-only .to-content {
    flex-grow: 1;
}

.bento-card.text-only .to-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
}

.bento-card.text-only .to-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.bento-card.text-only .to-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.bento-card.text-only .to-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.bento-card.text-only .to-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0a0a0a;
}

.bento-card.text-only .to-cta {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: #0a0a0a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bento-card.text-only .to-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ============================================
   TYPE 8: ACCENT CARD - Color Pop
   Takes 3 columns, 1 row
   ============================================ */
.bento-card.accent {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 200px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card.accent .accent-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bento-card.accent .accent-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-top: auto;
    color: #fff;
}

.bento-card.accent .accent-icon {
    color: #fff;
}

.bento-card.accent .accent-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.bento-card.accent:hover .accent-arrow {
    color: #fff;
    transform: translate(4px, -4px);
}

/* ============================================
   SPACER / DECORATIVE ELEMENTS
   ============================================ */
.bento-spacer {
    grid-column: span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.bento-spacer .spacer-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: #ccc;
    text-align: center;
}

/* ============================================
   BENTO RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
    }

    .bento-card.hero {
        grid-column: span 8;
    }

    .bento-card.hero .hero-title {
        font-size: 38px;
    }

    .bento-card.tall {
        grid-column: span 4;
    }

    .bento-card.wide {
        grid-column: span 8;
    }

    .bento-card.compact {
        grid-column: span 4;
    }

    .bento-card.quote {
        grid-column: span 4;
    }

    .bento-card.number-focus {
        grid-column: span 4;
    }

    .bento-card.text-only {
        grid-column: span 8;
    }

    .bento-card.accent {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .services-grid-wrapper.bento-style {
        padding: 0 30px 80px;
    }

    .bento-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .bento-card.hero {
        grid-column: span 6;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .bento-card.hero .hero-visual {
        min-height: 200px;
    }

    .bento-card.hero .hero-content {
        padding: 40px 35px;
    }

    .bento-card.hero .hero-title {
        font-size: 32px;
    }

    .bento-card.hero .hero-number {
        font-size: 120px;
    }

    .bento-card.tall {
        grid-column: span 3;
        min-height: 400px;
    }

    .bento-card.wide {
        grid-column: span 6;
        grid-template-columns: 1fr;
    }

    .bento-card.wide .wide-visual {
        min-height: 150px;
    }

    .bento-card.compact {
        grid-column: span 3;
    }

    .bento-card.quote {
        grid-column: span 6;
    }

    .bento-card.number-focus {
        grid-column: span 6;
    }

    .bento-card.text-only {
        grid-column: span 6;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px;
    }

    .bento-card.text-only .to-number {
        font-size: 80px;
    }

    .bento-card.accent {
        grid-column: span 3;
    }
}

/* ============================================
   BENTO RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
    .services-grid-wrapper.bento-style {
        padding: 0 20px 60px;
    }

    .bento-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card.hero,
    .bento-card.tall,
    .bento-card.wide,
    .bento-card.compact,
    .bento-card.quote,
    .bento-card.number-focus,
    .bento-card.text-only,
    .bento-card.accent {
        grid-column: span 1;
    }

    .bento-card.hero {
        min-height: auto;
    }

    .bento-card.hero .hero-title {
        font-size: 28px;
    }

    .bento-card.hero .hero-content {
        padding: 35px 25px;
    }

    .bento-card.hero .hero-number {
        font-size: 80px;
        bottom: -20px;
        right: 20px;
    }

    .bento-card.hero .hero-visual .hero-icon {
        font-size: 80px;
    }

    .bento-card.tall {
        min-height: auto;
        padding: 40px 30px;
    }

    .bento-card.tall .tall-number {
        font-size: 60px;
    }

    .bento-card.tall .tall-title {
        font-size: 26px;
    }

    .bento-card.wide {
        grid-template-columns: 1fr;
    }

    .bento-card.wide .wide-visual {
        min-height: 120px;
    }

    .bento-card.wide .wide-content {
        padding: 30px 25px;
    }

    .bento-card.wide .wide-title {
        font-size: 22px;
    }

    .bento-card.compact {
        min-height: auto;
        padding: 30px 25px;
    }

    .bento-card.compact .compact-title {
        font-size: 20px;
    }

    .bento-card.quote {
        padding: 35px 30px;
    }

    .bento-card.quote .quote-text {
        font-size: 18px;
    }

    .bento-card.number-focus {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        min-height: auto;
    }

    .bento-card.number-focus .nf-big-number {
        font-size: 70px;
    }

    .bento-card.text-only {
        padding: 35px 25px;
        min-height: auto;
    }

    .bento-card.text-only .to-number {
        font-size: 60px;
    }

    .bento-card.text-only .to-title {
        font-size: 24px;
    }

    .bento-card.accent {
        min-height: auto;
        padding: 30px 25px;
    }

    .bento-card.accent .accent-title {
        font-size: 20px;
    }
}

/* ============================================
   ANIMATION DELAYS - Staggered Entry
   ============================================ */
.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.15s; }
.bento-card:nth-child(4) { transition-delay: 0.2s; }
.bento-card:nth-child(5) { transition-delay: 0.25s; }
.bento-card:nth-child(6) { transition-delay: 0.3s; }
.bento-card:nth-child(7) { transition-delay: 0.35s; }
.bento-card:nth-child(8) { transition-delay: 0.4s; }
.bento-card:nth-child(n+9) { transition-delay: 0.45s; }

/* Hide old elements in bento style */
.services-grid-wrapper.bento-style .service-detail {
    display: none !important;
}

/* ============================================
   SERVICES STATS SECTION (bottom of page)
   ============================================ */

.services-stats-section {
    display: none;
    background: #fff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
}

.services-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-stats-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-stats-text {
    flex: 1;
    min-width: 0;
}

.services-stats-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.services-stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.services-stats-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex-shrink: 0;
}

.services-stat-card {
    text-align: center;
    padding: 22px 24px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 110px;
}

.services-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.services-stat-card .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.services-stat-card .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Desktop only - show stats section */
@media (min-width: 1024px) {
    .services-stats-section {
        display: block;
    }
}

/* Mobile/Tablet - stack layout */
@media (max-width: 768px) {
    .services-stats-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .services-stats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .services-stats-section {
        padding: 40px 20px;
    }

    .services-stat-card .stat-value {
        font-size: 1.5rem;
    }
}
