/* Case Study Breathing Soul Specific Styles */

.case-study-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.case-study-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.case-study-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/Breathing Soul/fullwidth/BANNER\ PHOTO.jpg");
    background-size: cover;
    background-position:  center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.case-study-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 42, 74, 0.6) 30%, rgba(251, 194, 19, 0.1) 70%, rgba(25, 54, 95, 0.8) 100%);
    z-index: 1;
}

.case-study-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.case-study-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: var(--font-bold);
}

.case-study-hero-title {
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: var(--font-bold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero Font Sizes */
@media (max-width: 1536px) {
    .case-study-hero-title {
        font-size: clamp(3.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 1280px) {
    .case-study-hero-title {
        font-size: clamp(3rem, 8vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .case-study-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
}

@media (max-width: 640px) {
    .case-study-hero-title {
        font-size: clamp(1.8rem, 8vw, 1.8rem);
    }
}

@media (max-width: 360px) {
    .case-study-hero-title {
        font-size: clamp(1.2rem, 8vw, 1.2rem);
    }
}


/* Three Images Section - Desktop: 3 images, Mobile: slider */
.breathing-soul-three-images {
    padding: 0;
    margin: 0;
    background: var(--light-gray);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.three-images-container {
    display: flex;
    gap: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

.image-item {
    flex: 1;
    max-width: calc(33.333%);
    min-width: calc(33.333%);
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Desktop: Ensure all 3 images are visible */
@media (min-width: 801px) {
    .three-images-container {
        transform: translateX(0%) !important;
    }
    .mobile-slider-controls {
        display: none !important;
    }
}

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

/* Mobile Slider Controls */
.mobile-slider-controls {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.mobile-slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    pointer-events: auto;
    position: absolute;
}

.mobile-slider-btn.prev {
    left: 1rem;
}

.mobile-slider-btn.next {
    right: 1rem;
}

.mobile-slider-btn:hover {
    transform: scale(1.1);
}

.mobile-slider-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Mobile: Convert to slider at 800px and below */
@media (max-width: 800px) {
    .breathing-soul-three-images {
        padding: 0;
        margin: 0;
        background: var(--light-gray);
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
        height: 100vh;
        overflow: hidden;
    }
    .three-images-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 0;
        width: 300%;
        height: 100vh;
        margin: 0;
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    .image-item {
        min-width: calc(33.333%);
        flex: 0 0 calc(33.333%);
        height: 100vh;
        border-radius: 0;
    }
    .image-item img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        display: block;
    }
    .mobile-slider-controls {
        display: flex;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 801px) {
    .breathing-soul-three-images {
        height: 80vh;
    }
    .image-item img {
        height: 80vh;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .breathing-soul-three-images {
        height: 70vh;
    }
    .image-item img {
        height: 70vh;
    }
    .mobile-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .mobile-slider-btn.prev {
        left: 0.5rem;
    }
    .mobile-slider-btn.next {
        right: 0.5rem;
    }
}

/* ========================================
   IMAGE SLIDER SECTION
   ======================================== */

.breathing-soul-image-slider {
    padding: 80px 0;
    background: var(--light-gray);
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    /* Allow natural scrolling behavior */
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

.slider-slide {
    min-width: calc(33.333% - 1rem);
    flex: 0 0 calc(33.333% - 1rem);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide:hover {
    transform: translateY(-5px);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slider-slide:hover img {
    transform: scale(1.05);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 15;
    margin-top: 0;
    padding: 0 1rem;
}

.slider-btn {
    background: rgba(251, 194, 19, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #ffffff;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.slider-btn:hover {
    background: rgba(251, 194, 19, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* Slider Responsive Design */
/* Desktop: Ensure 3 slides are visible */
@media (min-width: 769px) {
    .slider-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    
    .slider-slide {
        min-width: calc(33.333% - 1rem);
        flex: 0 0 calc(33.333% - 1rem);
        height: 700px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        gap: 1.5rem;
    }
    
    .slider-slide {
        min-width: calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
        height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide img {
        object-fit: cover;
        object-position: center;
    }
    
    .slider-controls {
        left: 0;
        right: 0;
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        gap: 0;
    }
    
    .slider-slide {
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
        height: 630px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide img {
        height: 630px;
        object-fit: cover;
        object-position: center;
    }
    
    .slider-controls {
        left: 0;
        right: 0;
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
}

.full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #000;
    transition: opacity 0.3s ease;
}

.full-width-video[poster] {
    background-image: attr(poster);
    background-size: cover;
    background-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 54, 95, 0.3) 0%, rgba(20, 42, 74, 0.2) 50%, rgba(251, 194, 19, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Video Hover Overlay */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Video Controls - Centered Big Play Button */
.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Big centered play button */
.play-pause-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    margin: 0 auto;
}

/* Small bottom controls (initially hidden) */
.mute-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: clamp(35px, 6vw, 50px);
    height: clamp(35px, 6vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* When video is playing, move controls to bottom */
.video-container.playing .video-controls {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.video-container.playing .play-pause-btn {
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
}

.video-container.playing .mute-btn {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
}

.video-container.playing::before {
    opacity: 0;
    visibility: hidden;
}

.play-pause-btn:hover, .mute-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-pause-btn i {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mute-btn i {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.play-pause-btn.playing i {
    color: #27ae60;
}

.mute-btn.unmuted i {
    color: #e74c3c;
}

/* Video Loading States */
.video-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 4;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Video Error State */
.video-container.error::after {
    content: 'Video unavailable';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    z-index: 4;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Mobile responsive video controls */
@media (max-width: 768px) {
    .case-study-hero {
        height: 80vh;
    }
    
    .case-study-hero-background {
        min-height: 80vh;
    }
    
    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .play-pause-btn {
        width: clamp(60px, 12vw, 100px);
        height: clamp(60px, 12vw, 100px);
    }
    
    .play-pause-btn i {
        font-size: var(--font-size-2xl); /* 24px - Medium headings */
    }
    
    .mute-btn {
        width: clamp(35px, 6vw, 50px);
        height: clamp(35px, 6vw, 50px);
    }
    
    .mute-btn i {
        font-size: var(--font-size-base); /* 16px - Base text */
    }
    
    .video-container.error::after {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}



.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-outline:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.cta-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
    filter: brightness(1.1);
}

/* CTA Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-logo {
        height: 200px;
    }
    
    .cta-logo img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {


    
    .case-study-hero {
        height: 45vh; /* Standard height for pages without hero banner images */
    }
    
    .case-study-hero-background {
        min-height: 45vh; /* Standard height for pages without hero banner images */
        position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
                    background-position: 80%;
            background-repeat: no-repeat;
    }
    
    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    /* Video Section Mobile Styling */
    .full-width-video-section {
        height: 100%;
        min-height: 300px;
    }
    
    .video-container {
        height: 50vh;
        min-height: 300px;
        width: 90%;
    }
    
    .full-width-video {
        height: 50vh;
        min-height: 300px;
        object-fit: cover;
    }
    
    .play-pause-btn {
        width: clamp(60px, 12vw, 100px);
        height: clamp(60px, 12vw, 100px);
    }
    
    .play-pause-btn i {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .mute-btn {
        width: clamp(35px, 6vw, 50px);
        height: clamp(35px, 6vw, 50px);
    }
    
    .mute-btn i {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }
    
    .video-controls {
        gap: 10px;
    }
    
    .video-container.error::after {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline {
        width: 100%;
        max-width: 250px;
    }

}


/* Footer Logo and Paragraph - Match Akbar */
.footer-brand .logo {
    height: 100px !important; /* Reduced from 150px */
    width: 140px !important; /* Reduced from 200px */
}

.footer-brand p {
    margin-bottom: 1rem !important; /* Reduced from 2rem */
}


/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}


/* ========================================
   VIMEO VIDEO CONTROLS
   ======================================== */

/* Vimeo Video Container */
.vimeo-video-container {
    position: relative;
    width: 100%;
    background: #000;
}

/* Hide Vimeo spinner and UI */
.vimeo-video-container iframe {
    pointer-events: auto;
}

.vimeo-video-container .vp-spinner,
.vimeo-video-container [class*="spinner"],
.vimeo-video-container [class*="loading"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Big Centered Play Button */
.vimeo-video-controls-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    transition: all 0.3s ease;
}

.vimeo-play-btn-big {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.vimeo-play-btn-big:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.vimeo-play-btn-big i {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #19365f;
    margin-left: 5px; /* Optical alignment for play icon */
}

/* Bottom Video Controls */
.vimeo-video-controls-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 150;
    pointer-events: auto;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

/* Small Play/Pause Button */
.vimeo-play-btn-small {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 160;
}

.vimeo-play-btn-small:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vimeo-play-btn-small i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.vimeo-play-btn-small.playing i {
    color: #27ae60;
}

.vimeo-play-btn-small.paused i {
    color: #e74c3c;
}

/* Volume Button */
.vimeo-volume-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 160;
}

.vimeo-volume-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vimeo-volume-btn i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.vimeo-volume-btn.muted i {
    color: #e74c3c;
}

.vimeo-volume-btn.unmuted i {
    color: #27ae60;
}

/* Vimeo Controls Responsive */
@media (max-width: 768px) {
    .vimeo-video-controls-bottom {
        gap: 0.8rem;
    }
    
    .vimeo-play-btn-big {
        width: clamp(70px, 15vw, 100px);
        height: clamp(70px, 15vw, 100px);
    }
    
    .vimeo-play-btn-big i {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 45px;
        height: 45px;
    }
    
    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vimeo-video-controls-bottom {
        bottom: 15px;
        right: 15px;
        gap: 0.6rem;
    }
    
    .vimeo-play-btn-big {
        width: clamp(60px, 15vw, 80px);
        height: clamp(60px, 15vw, 80px);
    }
    
    .vimeo-play-btn-big i {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 40px;
        height: 40px;
    }
    
    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 0.9rem;
    }
}

/* Video Thumbnail */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: opacity 0.3s ease;
}

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

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}



/* ========================================
   CASE STUDY CONTENT SECTION - UNIVERSAL
   ======================================== */

/* Content Section */
.case-study-content-section {
    padding: 6rem 0;
    background: #19365f;
    color: #ffffff;
    position: relative;
    z-index: 1;
    min-height: 400px;
    overflow: visible;
}

.case-study-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.case-study-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* Left Side - Services */
.case-study-services-side {
    text-align: left;
}

.case-study-services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-family: var(--font-bold);
}

.case-study-services-list {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Right Side - Project Description */
.case-study-project-side {
    text-align: left;
}

.case-study-project-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    font-family: var(--font-bold);
}

.case-study-project-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-study-content-section {
        padding: 4rem 0;
    }
    
    .case-study-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .case-study-project-title {
        font-size: 1.8rem;
    }
    
    .case-study-services-title {
        font-size: 1.3rem;
    }
    
    .case-study-services-list,
    .case-study-project-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .case-study-content-section {
        padding: 3rem 0;
    }
    
    .case-study-content-grid {
        gap: 2rem;
    }
    
    .case-study-project-title {
        font-size: 1.5rem;
    }
    
    .case-study-services-title {
        font-size: 1.2rem;
    }
    
    .case-study-services-list,
    .case-study-project-description {
        font-size: 0.95rem;
    }
}

