/* Uniform Page CSS */
/* Uniform Slider Section */
.dune-uniform-slider-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.dune-uniform-header {
    margin-bottom: 60px;
}

.dune-uniform-intro {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.dune-uniform-slider {
    position: relative;
    padding: 0 50px;
}

.uniformCategoriesSwiper {
    padding-bottom: 60px;
}

.dune-uniform-card {
    height: 500px;
    cursor: pointer;
}

.dune-uniform-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dune-uniform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dune-uniform-card:hover .dune-uniform-image img {
    transform: scale(1.1);
}

.dune-uniform-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.dune-uniform-card:hover .dune-uniform-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 70%);
}

.dune-uniform-content {
    width: 100%;
}

.dune-uniform-number {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

.dune-uniform-title {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 10px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.dune-uniform-desc {
    font-size: 14px;
    color: #ddd;
    margin: 0;
    line-height: 1.6;
}

.dune-uniform-slider .swiper-button-next,
.dune-uniform-slider .swiper-button-prev {
    color: #fff;
    background: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.dune-uniform-slider .swiper-button-next:hover,
.dune-uniform-slider .swiper-button-prev:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.dune-uniform-slider .swiper-button-next:after,
.dune-uniform-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.dune-uniform-slider .swiper-pagination {
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dune-uniform-slider .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

.dune-uniform-slider .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.4);
    width: 60px;
}

.dune-uniform-slider .swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transform: translateX(-100%);
    animation: progressLine 3s linear forwards;
}

@keyframes progressLine {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Features Section */
.dune-uniform-features {
    padding: 100px 0;
    background: #fff;
}

.dune-feature-card {
    background: #f8f8f8;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.dune-feature-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.dune-feature-icon {
    margin-bottom: 25px;
}

.dune-feature-card h4 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-family: 'Georgia', serif;
    font-weight: 500;
}

.dune-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   UNIFORM SPECIFICATIONS SECTION
   ============================================ */
.dune-specifications-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.specifications-grid {
    margin-top: 50px;
}

.spec-card {
    background: #ffffff;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: #c9a96e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.spec-card-secondary {
    background: #fafbfc;
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.spec-icon i {
    font-size: 28px;
    color: #ffffff;
}

.spec-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.spec-list li i {
    color: #c9a96e;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.spec-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
}

.spec-cta-text {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.spec-cta-wrapper .btn-b2b-primary {
    margin-top: 10px;
}

/* CTA Section */
.dune-uniform-cta {
    padding: 100px 0;
    background: #1a1a1a;
}

.dune-cta-title {
    font-size: 42px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
}

.dune-cta-text {
    font-size: 16px;
    color: #ddd;
    margin: 0 0 30px 0;
}

.dune-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dune-cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   B2B CONVERSION SECTIONS STYLES
   ============================================ */

.section-header-b2b {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-b2b {
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle-b2b {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Client Reviews Section */
.dune-b2b-reviews-section {
    padding: 100px 0;
    background: #ffffff;
}

.reviews-slider-wrapper {
    position: relative;
    padding: 0;
    margin-bottom: 50px;
}

.reviewsSwiper {
    padding-bottom: 0;
    margin-bottom: 0;
}

.review-card-b2b {
    background: #f8f9fa;
    padding: 40px 30px;
    height: 100%;
    min-height: 320px;
    border-left: 4px solid #c9a96e;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card-b2b:hover {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.author-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Reviews Slider Navigation - Square Buttons */
.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    display: none;
}

/* Reviews Pagination & Navigation Container */
.reviewsSwiper .swiper-pagination {
    position: absolute;
    top: -60px;
    right: 120px;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 0;
}

.reviewsSwiper .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 0;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    background: #c9a96e;
    width: 70px;
}

/* Navigation Controls - Positioned Top Right */
.review-navigation-controls {
    position: absolute;
    top: -65px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.review-nav-btn:hover {
    background: #c9a96e;
    transform: scale(1.05);
}

.review-nav-btn i {
    line-height: 1;
}

.review-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-b2b-primary {
    display: inline-block;
    padding: 16px 45px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-b2b-primary:hover {
    background: #c9a96e;
    border-color: #c9a96e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

/* Popular Styles Section */
.dune-popular-styles-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.styles-grid {
    margin-top: 50px;
}

.style-card-b2b {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.style-card-b2b:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #c9a96e;
}

.style-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card-b2b:hover .style-image img {
    transform: scale(1.08);
}

.style-content {
    padding: 30px 25px;
}

.style-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.style-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.style-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.style-card-b2b:hover .feature-badge {
    background: #c9a96e;
    color: #ffffff;
}

/* Fabric Options Section */
.dune-fabric-options-section {
    padding: 100px 0;
    background: #ffffff;
}

.fabric-grid {
    margin-top: 50px;
}

/* Enhanced Fabric Cards with Specs */
.fabric-card-enhanced {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fabric-card-enhanced:hover {
    border-color: #c9a96e;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
    transform: translateY(-5px);
}

.fabric-swatch {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fabric-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fabric-card-enhanced:hover .fabric-swatch img {
    transform: scale(1.08);
}

.fabric-content {
    padding: 30px 25px;
    flex-grow: 1;
}

.fabric-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.spec-icon-inline {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon-inline i {
    font-size: 22px;
    color: #ffffff;
}

.fabric-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.fabric-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fabric-spec-list li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fabric-spec-list li i {
    color: #c9a96e;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fabric-disclaimer {
    max-width: 800px;
    margin: 50px auto 40px;
    padding: 20px 30px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.fabric-disclaimer p {
    margin: 0;
    font-size: 14px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fabric-disclaimer i {
    font-size: 20px;
    color: #f59e0b;
}

.fabric-cta-wrapper {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-b2b-outline {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-b2b-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .dune-uniform-slider-section,
    .dune-uniform-features,
    .dune-uniform-cta,
    .dune-b2b-reviews-section,
    .dune-popular-styles-section,
    .dune-fabric-options-section {
        padding: 80px 0;
    }
    
    .dune-uniform-card {
        height: 450px;
    }
    
    .dune-uniform-title {
        font-size: 24px;
    }
    
    .dune-cta-title,
    .section-title-b2b {
        font-size: 32px;
    }
    
    .style-image {
        height: 250px;
    }
    
    .review-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .reviewsSwiper .swiper-pagination {
        right: 110px;
    }
    
    .fabric-content {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .dune-uniform-slider-section,
    .dune-uniform-features,
    .dune-uniform-cta,
    .dune-b2b-reviews-section,
    .dune-popular-styles-section,
    .dune-fabric-options-section {
        padding: 60px 0;
    }
    
    .dune-uniform-slider {
        padding: 0 20px;
    }
    
    .dune-uniform-card {
        height: 400px;
    }
    
    .dune-uniform-overlay {
        padding: 30px 20px;
    }
    
    .dune-uniform-number {
        font-size: 36px;
    }
    
    .dune-uniform-title {
        font-size: 22px;
    }
    
    .dune-uniform-desc {
        font-size: 13px;
    }
    
    .dune-cta-title,
    .section-title-b2b {
        font-size: 28px;
    }
    
    .dune-cta-text,
    .section-subtitle-b2b {
        font-size: 15px;
    }
    
    .review-card-b2b {
        padding: 30px 20px;
    }
    
    .review-card-b2b {
        min-height: 280px;
    }
    
    /* Move pagination and navigation below on mobile */
    .reviewsSwiper .swiper-pagination {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin-top: 30px;
    }
    
    .review-navigation-controls {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }
    
    .reviewsSwiper .swiper-pagination-bullet {
        width: 35px;
        margin: 0 3px;
    }
    
    .reviewsSwiper .swiper-pagination-bullet-active {
        width: 50px;
    }
    
    .review-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .style-image {
        height: 220px;
    }
    
    .fabric-swatch {
        height: 180px;
    }
    
    .fabric-content {
        padding: 25px 20px;
    }
    
    .fabric-title {
        font-size: 18px;
    }
    
    .fabric-spec-list li {
        font-size: 13px;
    }
    
    .fabric-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-b2b-primary,
    .btn-b2b-outline {
        width: 100%;
        text-align: center;
    }
}

/* Bespoke Page CSS */

/* Service Detail Section */
.dune-service-detail {
    padding: 50px 0;
    background: #fff;
}

/* Featured Image */
.dune-detail-image {
    margin-bottom: 40px;
    overflow: hidden;
}

.dune-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.dune-detail-content {
    padding-right: 20px;
}

.dune-detail-title {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 25px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.dune-detail-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.dune-detail-subtitle {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 40px 0 20px 0;
    font-family: 'Georgia', serif;
}

/* Features List */
.dune-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.dune-detail-features li {
    font-size: 15px;
    color: #444;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dune-detail-features i {
    color: #d4af37;
    font-size: 16px;
}

.dune-detail-process {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Sidebar */
.dune-service-sidebar {
    position: sticky;
    top: 100px;
}

.dune-sidebar-box {
    background: #f8f8f8;
    padding: 35px 30px;
    margin-bottom: 30px;
}

.dune-sidebar-title {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
}

/* Service Info */
.dune-sidebar-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dune-sidebar-info li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dune-sidebar-info li:last-child {
    border-bottom: none;
}

.dune-info-label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.dune-info-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Contact Box */
.dune-contact-box {
    background: #1a1a1a;
}

.dune-contact-box .dune-sidebar-title {
    color: #fff;
}

.dune-contact-text {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 20px 0;
}

.dune-contact-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #1a1a1a;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.dune-contact-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.dune-contact-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dune-contact-phone i {
    font-size: 24px;
    color: #d4af37;
}

.dune-phone-label {
    display: block;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
}

.dune-phone-number {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.dune-phone-number:hover {
    color: #d4af37;
}

/* Related Services */
.dune-sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dune-sidebar-services li {
    border-bottom: 1px solid #e0e0e0;
}

.dune-sidebar-services li:last-child {
    border-bottom: none;
}

.dune-sidebar-services a {
    display: block;
    padding: 15px 0;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dune-sidebar-services a:hover {
    color: #d4af37;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .dune-service-detail {
        padding: 80px 0;
    }
    
    .dune-detail-title {
        font-size: 36px;
    }
    
    .dune-detail-subtitle {
        font-size: 24px;
    }
    
    .dune-detail-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .dune-service-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .dune-service-detail {
        padding: 60px 0;
    }
    
    .dune-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .dune-detail-subtitle {
        font-size: 22px;
        margin-top: 30px;
    }
    
    .dune-detail-text {
        font-size: 15px;
    }
    
    .dune-sidebar-box {
        padding: 25px 20px;
    }
    
    .dune-sidebar-title {
        font-size: 20px;
    }
}

/* Process Cards Section */
.dune-process-cards-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.dune-process-header {
    margin-bottom: 60px;
}

/* Process Grid */
.dune-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Process Card */
.dune-process-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.dune-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Process Image */
.dune-process-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.dune-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dune-process-card:hover .dune-process-image img {
    transform: scale(1.1);
}

/* Image Overlay */
.dune-process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.4s ease;
}

.dune-process-card:hover .dune-process-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* Process Number */
.dune-process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    z-index: 2;
    transition: all 0.4s ease;
}

.dune-process-card:hover .dune-process-number {
    background: #d4af37;
    color: #fff;
    transform: scale(1.1);
}

/* Process Content */
.dune-process-content {
    padding: 30px 25px;
}

.dune-process-title {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 15px 0;
    font-family: 'Georgia', serif;
    line-height: 1.4;
    min-height: 56px;
}

.dune-process-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .dune-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .dune-process-image {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .dune-process-cards-section {
        padding: 60px 0;
    }
    
    .dune-process-header {
        margin-bottom: 40px;
    }
    
    .dune-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dune-process-image {
        height: 300px;
    }
    
    .dune-process-content {
        padding: 25px 20px;
    }
    
    .dune-process-title {
        font-size: 18px;
        min-height: auto;
    }
    
    .dune-process-desc {
        font-size: 13px;
    }
    
    .dune-process-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .dune-process-image {
        height: 250px;
    }
}

/* Personalize Section */
.dune-personalize-section {
    padding: 100px 0;
    background: #fff;
}

.dune-personalize-header {
    margin-bottom: 60px;
}

.dune-personalize-main-title {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

/* Personalize Grid */
.dune-personalize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Personalize Card */
.dune-personalize-card {
    background: #f5f5f5;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.dune-personalize-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Icon */
.dune-personalize-icon {
    margin-bottom: 25px;
}

.dune-personalize-icon i {
    font-size: 48px;
    color: #1a1a1a;
    transition: all 0.4s ease;
}

.dune-personalize-card:hover .dune-personalize-icon i {
    color: #d4af37;
    transform: scale(1.1);
}

/* Title */
.dune-personalize-title {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 8px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.3px;
}

/* Subtitle */
.dune-personalize-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1199px) {
    .dune-personalize-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .dune-personalize-section {
        padding: 80px 0;
    }
    
    .dune-personalize-main-title {
        font-size: 36px;
    }
    
    .dune-personalize-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dune-personalize-card {
        padding: 40px 25px;
    }
    
    .dune-personalize-icon i {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .dune-personalize-section {
        padding: 60px 0;
    }
    
    .dune-personalize-header {
        margin-bottom: 40px;
    }
    
    .dune-personalize-main-title {
        font-size: 28px;
    }
    
    .dune-personalize-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .dune-personalize-card {
        padding: 35px 20px;
    }
    
    .dune-personalize-icon {
        margin-bottom: 20px;
    }
    
    .dune-personalize-icon i {
        font-size: 36px;
    }
    
    .dune-personalize-title {
        font-size: 18px;
    }
    
    .dune-personalize-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .dune-personalize-main-title {
        font-size: 24px;
    }
    
    .dune-personalize-card {
        padding: 30px 15px;
    }
    
    .dune-personalize-title {
        font-size: 16px;
    }
}

/* Fabric Section */
.dune-fabric-section {
    padding: 100px 0;
    background: #fff;
}

.dune-fabric-header {
    margin-bottom: 60px;
}

.dune-fabric-intro {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Fabric Grid */
.dune-fabric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Fabric Card */
.dune-fabric-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 600px;
}

/* Fabric Image */
.dune-fabric-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dune-fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dune-fabric-card:hover .dune-fabric-image img {
    transform: scale(1.1);
}

/* Fabric Overlay */
.dune-fabric-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.dune-fabric-card:hover .dune-fabric-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

/* Fabric Name */
.dune-fabric-name {
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.dune-fabric-card:hover .dune-fabric-name {
    transform: translateY(-10px);
}

/* CTA Button */
.dune-fabric-cta {
    margin-top: 60px;
}

.dune-fabric-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dune-fabric-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1199px) {
    .dune-fabric-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .dune-fabric-card {
        height: 500px;
    }
    
    .dune-fabric-name {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .dune-fabric-section {
        padding: 80px 0;
    }
    
    .dune-fabric-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dune-fabric-card {
        height: 450px;
    }
    
    .dune-fabric-overlay {
        padding: 30px 25px;
    }
    
    .dune-fabric-name {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .dune-fabric-section {
        padding: 60px 0;
    }
    
    .dune-fabric-header {
        margin-bottom: 40px;
    }
    
    .dune-fabric-intro {
        font-size: 15px;
    }
    
    .dune-fabric-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .dune-fabric-card {
        height: 350px;
    }
    
    .dune-fabric-overlay {
        padding: 25px 20px;
    }
    
    .dune-fabric-name {
        font-size: 24px;
    }
    
    .dune-fabric-cta {
        margin-top: 40px;
    }
    
    .dune-fabric-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .dune-fabric-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dune-fabric-card {
        height: 400px;
    }
    
    .dune-fabric-overlay {
        padding: 30px 20px;
    }
    
    .dune-fabric-name {
        font-size: 32px;
    }
    
    .dune-fabric-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* Consultation Hero Section */
.dune-consultation-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.dune-consultation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/13295278/pexels-photo-13295278.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dark Overlay */
.dune-consultation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

/* Content Container */
.dune-consultation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Main Title */
.dune-consultation-title {
    font-size: 56px;
    color: #ffffff;
    font-weight: 300;
    margin: 0 0 40px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.dune-consultation-btn {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
}

.dune-consultation-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .dune-consultation-hero {
        height: 500px;
    }

    .dune-consultation-title {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .dune-consultation-btn {
        padding: 18px 50px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .dune-consultation-hero {
        height: 450px;
    }

    .dune-consultation-bg {
        background-attachment: scroll;
    }

    .dune-consultation-title {
        font-size: 32px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .dune-consultation-btn {
        padding: 16px 40px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 575px) {
    .dune-consultation-hero {
        height: 400px;
    }

    .dune-consultation-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .dune-consultation-btn {
        padding: 14px 35px;
        font-size: 13px;
    }
}

/* Lookbook Page CSS */

/* Gallery Section */
.gallery-section-lookbook {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-intro {
    margin-bottom: 60px;
}

.sec-title-dec {
    margin-bottom: 10px;
}

.sub-title {
    font-size: 14px;
    color: #c9a961;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sec-title {
    font-size: 42px;
    color: #1a3a2e;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Doppio Lookbook Content - Horizontal Rows */
.lookbook-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.lookbook-row-wrapper {
    margin-bottom: 8px;
}

.lookbook-row {
    display: flex;
    gap: 8px;
    width: 100%;
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
}

/* Alternating Row Offset - Creates the Doppio Stagger Effect */
.lookbook-row.is-top {
    transform: translateX(0);
    justify-content: center;
}

.lookbook-row.is-bottom {
    transform: translateX(0);
    justify-content: center;
}

/* Individual Lookbook Items */
.lookbook-item {
    flex: 0 0 calc(25% - 6px);
    width: calc(25% - 6px);
    max-width: 350px;
}

.lookbook-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
    border-radius: 0;
}

.lookbook-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lookbook-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Edge-to-Edge Shine Animation */
.shine-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translate(-100%, -100%);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.lookbook-card:hover .shine-overlay {
    animation: shineEdgeToEdge 0.8s ease-out;
}

@keyframes shineEdgeToEdge {
    0% {
        transform: translate(-100%, -100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

/* Hover Overlay */
.lookbook-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 3;
}

.lookbook-card:hover .lookbook-hover-overlay {
    opacity: 1;
}

.lookbook-card:hover .lookbook-image {
    transform: scale(1.05);
}

/* Actions */
.lookbook-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    transform: translateY(-15px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.lookbook-card:hover .lookbook-actions {
    transform: translateY(0);
    opacity: 1;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1a3a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: #1a3a2e;
    color: #fff;
    transform: scale(1.1);
}

/* Info */
.lookbook-info {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
}

.lookbook-card:hover .lookbook-info {
    transform: translateY(0);
    opacity: 1;
}

.lookbook-category {
    display: inline-block;
    color: #c9a961;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.lookbook-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Empty State */
.empty-gallery-state {
    text-align: center;
    padding: 80px 20px;
    width: 100%;
}

.empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-gallery-state h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.empty-gallery-state p {
    font-size: 16px;
    color: #666;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .lookbook-card {
        height: 380px;
    }
}

@media (max-width: 1200px) {
    .lookbook-card {
        height: 360px;
    }
}

@media (max-width: 992px) {
    .gallery-section-lookbook {
        padding: 80px 0;
    }
    
    .lookbook-row {
        gap: 6px;
    }
    
    .lookbook-item {
        flex: 0 0 calc(33.333% - 4px);
        width: calc(33.333% - 4px);
        max-width: 100%;
    }
    
    .lookbook-card {
        height: 320px;
    }
    
    .lookbook-hover-overlay {
        padding: 15px;
    }
    
    .sec-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .lookbook-row {
        gap: 6px;
    }
    
    .lookbook-item {
        flex: 0 0 calc(50% - 3px);
        width: calc(50% - 3px);
        max-width: 100%;
    }
    
    .lookbook-card {
        height: 280px;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .lookbook-title {
        font-size: 13px;
    }
    
    .lookbook-category {
        font-size: 9px;
    }
    
    .sec-title {
        font-size: 32px;
    }
    
    .gallery-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-section-lookbook {
        padding: 60px 0;
    }
    
    .lookbook-content {
        padding: 0 10px;
    }
    
    .lookbook-row {
        gap: 4px;
    }
    
    .lookbook-card {
        height: 250px;
    }
    
    .lookbook-hover-overlay {
        padding: 12px;
    }
    
    .sec-title {
        font-size: 28px;
    }
}

@media (max-width: 400px) {
    .lookbook-item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .lookbook-card {
        height: 300px;
    }
}

/* Dune Experience Page CSS */

/* Hero Section */
.dune-exp-hero {
    position: relative;
    padding: 200px 0 150px;
    overflow: hidden;
}

.dune-exp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.dune-exp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.dune-exp-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.dune-exp-breadcrumb {
    margin-bottom: 30px;
}

.dune-exp-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dune-exp-breadcrumb-list li {
    color: #fff;
    font-size: 14px;
}

.dune-exp-breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dune-exp-breadcrumb-list li a:hover {
    color: #d4af37;
}

.dune-exp-hero-title {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* Process Section */
.dune-exp-process {
    padding: 100px 0;
    background: #f8f8f8;
}

.dune-exp-images-stack {
    position: relative;
    padding-right: 30px;
    min-height: 550px;
}

.dune-exp-img-back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    width: 400px;
    height: 500px;
    border: 4px solid #466a69;
}

.dune-exp-img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dune-exp-img-front {
    position: absolute;
    top: 130px;
    right: -45px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 400px;
    height: 500px;
    border: 4px solid #fff;
}

.dune-exp-img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dune-exp-img-back:hover img,
.dune-exp-img-front:hover img {
    transform: scale(1.05);
}

.dune-exp-steps {
    padding-left: 50px;
}

.dune-exp-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.dune-exp-step:last-child {
    margin-bottom: 0;
}

.dune-exp-step-num {
    font-size: 28px;
    font-weight: 300;
    color: #999;
    min-width: 50px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.dune-exp-step-content {
    flex: 1;
}

.dune-exp-step-title {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: 'Georgia', serif;
    font-style: italic;
    line-height: 1.4;
}

.dune-exp-step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Customization Section */
.dune-exp-custom {
    padding: 100px 0;
    background: #fff;
}

.dune-exp-custom-header {
    text-align: center;
    margin-bottom: 60px;
}

.dune-exp-custom-title {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.dune-exp-custom-stack {
    display: block;
    width: 100%;
}

.dune-exp-custom-card {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 2rem;
}

.dune-exp-custom-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.dune-exp-custom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: all 0.4s ease;
}

.dune-exp-custom-name {
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.dune-exp-custom-card:hover .dune-exp-custom-img {
    transform: scale(1.05);
}

.dune-exp-custom-card:hover .dune-exp-custom-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* Responsive */
@media (max-width: 991px) {
    .dune-exp-hero-title {
        font-size: 42px;
    }
    
    .dune-exp-images-stack {
        padding-right: 0;
        margin-bottom: 50px;
        min-height: 450px;
    }
    
    .dune-exp-img-back,
    .dune-exp-img-front {
        width: 300px;
        height: 400px;
    }
    
    .dune-exp-img-front {
        right: 0;
        top: 50px;
    }
    
    .dune-exp-steps {
        padding-left: 0;
    }
    
    .dune-exp-custom-title {
        font-size: 32px;
    }
    
    .dune-exp-custom-name {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .dune-exp-hero {
        padding: 150px 0 100px;
    }
    
    .dune-exp-hero-title {
        font-size: 32px;
    }
    
    .dune-exp-images-stack {
        min-height: 350px;
    }
    
    .dune-exp-img-back,
    .dune-exp-img-front {
        width: 220px;
        height: 300px;
    }
    
    .dune-exp-img-front {
        top: 50px;
    }
    
    .dune-exp-step {
        margin-bottom: 30px;
    }
    
    .dune-exp-step-num {
        font-size: 24px;
        min-width: 40px;
    }
    
    .dune-exp-step-title {
        font-size: 16px;
    }
    
    .dune-exp-step-desc {
        font-size: 13px;
    }
    
    .dune-exp-custom-card {
        height: 220px;
    }
    
    .dune-exp-custom-overlay {
        padding: 30px 35px;
    }
    
    .dune-exp-custom-name {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .dune-exp-hero-title {
        font-size: 28px;
    }
    
    .dune-exp-custom-title {
        font-size: 28px;
    }
    
    .dune-exp-custom-card {
        height: 200px;
    }
}

/* Dune Service Page CSS */

/* Services Section */
.dune-services-section {
    padding: 100px 0;
    background: #f8f8f8;
}

/* Service Card */
.dune-service-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dune-service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Service Image */
.dune-service-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.dune-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dune-service-card:hover .dune-service-image img {
    transform: scale(1.1);
}

.dune-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

/* Service Content */
.dune-service-content {
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dune-service-title {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.dune-service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

/* Service Features */
.dune-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.dune-service-features li {
    font-size: 14px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dune-service-features li:last-child {
    border-bottom: none;
}

.dune-service-features i {
    color: #d4af37;
    font-size: 12px;
}

/* Service Button */
.dune-service-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
    align-self: flex-start;
}

.dune-service-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .dune-services-section {
        padding: 80px 0;
    }
    
    .dune-service-image {
        height: 300px;
    }
    
    .dune-service-title {
        font-size: 32px;
    }
    
    .dune-service-content {
        padding: 35px 30px;
    }
}

@media (max-width: 767px) {
    .dune-services-section {
        padding: 60px 0;
    }
    
    .dune-service-image {
        height: 250px;
    }
    
    .dune-service-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .dune-service-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .dune-service-content {
        padding: 30px 25px;
    }
    
    .dune-service-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .dune-service-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

.client-item {
    text-align: center;
    padding: 15px;
}

.client-item .image {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.client-item .image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.client-item:hover .image img {
    transform: scale(1.05);
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 10px;
    transition: color 0.3s ease;
}

.client-item:hover .client-name {
    color: #466a69; /* Change to your theme color */
}