/* OOH Page Specific Styles */

/* Hero Section */
.ooh-hero {
    position: relative;
    height: 64vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.ooh-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}
p.ooh-hero-subtitle {
    color: #ffff;
}
.ooh-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/ooh-main/Billboard_banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 64vh;
}

.ooh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.ooh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.ooh-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}



.ooh-hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Services Section */
.ooh-services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.ooh-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ooh-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ooh-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ooh-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.ooh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ooh-service-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ooh-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ooh-service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ooh-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ooh-service-item:hover .ooh-service-image img {
    transform: scale(1.1);
}

.ooh-service-content {
    padding: 2rem;
}

.ooh-service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ooh-service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ooh-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ooh-service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.ooh-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Full Width Video Section - Clover Style */
.ooh-video-section {
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 1;
}

.vimeo-video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hide Vimeo spinner and UI */
.vimeo-video-container iframe {
    border: none;
    outline: none;
}

/* Video Thumbnail */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    transition: opacity 0.3s ease;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

/* Big Centered Play Button */
.vimeo-video-controls-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 25;
    transition: opacity 0.3s ease;
}

.vimeo-play-btn-big {
    width: 80px;
    height: 80px;
    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.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 26;
    pointer-events: auto;
}

.vimeo-play-btn-big:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vimeo-play-btn-big i {
    font-size: 2rem;
    color: #19365f;
    margin-left: 5px;
}

/* Bottom Video Controls */
.vimeo-video-controls-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 35;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vimeo-play-btn-small {
    width: 45px;
    height: 45px;
    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.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 36;
    pointer-events: auto;
}

.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.3);
}

.vimeo-play-btn-small i {
    font-size: 1.1rem;
    color: #19365f;
}

/* Volume Button */
.vimeo-volume-btn {
    width: 45px;
    height: 45px;
    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.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 36;
    pointer-events: auto;
}

.vimeo-volume-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vimeo-volume-btn i {
    font-size: 1.1rem;
    color: #19365f;
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .ooh-video-section {
        padding: 3rem 0;
    }

    .vimeo-play-btn-big {
        width: 60px;
        height: 60px;
    }

    .vimeo-play-btn-big i {
        font-size: 1.5rem;
    }

    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 40px;
        height: 40px;
    }

    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ooh-video-section {
        padding: 2rem 0;
    }

    .vimeo-video-controls-bottom {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }

    .vimeo-play-btn-small,
    .vimeo-volume-btn {
        width: 40px;
        height: 40px;
    }

    .vimeo-play-btn-small i,
    .vimeo-volume-btn i {
        font-size: 1rem;
    }
}

/* Content Section */
.ooh-content-section {
    padding: 6rem 0;
    background: #19365f;
    color: var(--white);
}

.ooh-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ooh-content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.ooh-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.ooh-content-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ooh-content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Stats Section */
.ooh-stats-section {
    padding: 6rem 0;
    background: var(--white);
}

.ooh-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ooh-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ooh-stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ooh-stat-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.ooh-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ooh-stat-item:hover .ooh-stat-number {
    color: var(--white);
}

.ooh-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ooh-stat-item:hover .ooh-stat-label {
    color: var(--white);
}

/* Process Section */
.ooh-process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.ooh-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ooh-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ooh-process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ooh-process-step:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ooh-step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ooh-process-step:hover .ooh-step-number {
    background: var(--white);
    color: var(--primary-color);
}

.ooh-process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.ooh-process-step:hover h3 {
    color: var(--white);
}

.ooh-process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.ooh-process-step:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.ooh-cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ooh-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ooh-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ooh-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.ooh-cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.ooh-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ooh-btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.ooh-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.ooh-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.ooh-btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ooh-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
    
    .ooh-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ooh-video-container {
        height: 70vh;
    }
    
    .ooh-play-pause-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .ooh-mute-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ooh-hero {
        height: 80vh;
    }
    
    .ooh-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .ooh-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ooh-section-title {
        font-size: 2rem;
    }
    
    .ooh-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ooh-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .ooh-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ooh-video-container {
        height: 60vh;
    }
    
    .ooh-play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .ooh-mute-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
    
    .ooh-cta-section {
        padding: 4rem 0;
    }
    
    .ooh-cta-title {
        font-size: 2.2rem;
    }
    
    .ooh-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ooh-btn-primary,
    .ooh-btn-outline {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ooh-hero {
        height: 45vh; /* Standard height for pages without hero banner images */
    }
    
    .ooh-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .ooh-hero-subtitle {
        font-size: 1rem;
    }
    
    .ooh-section-title {
        font-size: 1.8rem;
    }
    
    .ooh-services-section {
        padding: 4rem 0;
    }
    
    .ooh-content-section {
        padding: 4rem 0;
    }
    
    .ooh-stats-section {
        padding: 4rem 0;
    }
    
    .ooh-process-section {
        padding: 4rem 0;
    }
    
    .ooh-video-container {
        height: 50vh;
    }
    
    .ooh-play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .ooh-mute-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
    }
    
    .ooh-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ooh-stat-number {
        font-size: 2.5rem;
    }
    
    .ooh-cta-title {
        font-size: 1.8rem;
    }
    
    .ooh-cta-subtitle {
        font-size: 1rem;
    }
}


/* ========================================
   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;
}
