/* Videography Page Specific Styles */
.hero-background {
    width: 100vw;
    height: 86vh;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hero {
    min-height: 86vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    transition: min-height 0.3s ease;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-video-container>div {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
/* Hero Section */
.videography-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100%;
  
}

.videography-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.videography-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    overflow: hidden;
}

.videography-hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.videography-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    border: none;
}

.videography-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.videography-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.videography-hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    text-align: center;
    pointer-events: none;
}

.videography-hero-text {
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.videography-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;
    color: white;
}

.videography-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.videography-hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Services Section */
.videography-services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.videography-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.videography-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.videography-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.videography-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.videography-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.videography-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;
}

.videography-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.videography-service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.videography-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videography-service-item:hover .videography-service-image img {
    transform: scale(1.1);
}

.videography-service-content {
    padding: 2rem;
}

.videography-service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.videography-service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.videography-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.videography-service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.videography-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Content Section */
.videography-content-section {
    padding: 6rem 0;
    background: #19365f;
    color: var(--white);
}

.videography-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.videography-content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.videography-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.videography-content-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.videography-content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Mobile Full Width Video Section - Clover Style */
.mobile-full-width-video-section {
    display: none; /* Hidden by default, shown only on 425px and below */
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 1;
}

.mobile-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 */
.mobile-vimeo-video-container iframe {
    border: none;
    outline: none;
}

/* Mobile Video Thumbnail */
.mobile-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    transition: opacity 0.3s ease;
}

.mobile-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mobile-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 */
.mobile-vimeo-video-controls-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 25;
    transition: opacity 0.3s ease;
}

.mobile-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;
}

.mobile-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);
}

.mobile-vimeo-play-btn-big i {
    font-size: 2rem;
    color: #19365f;
    margin-left: 5px;
}

/* Bottom Video Controls */
.mobile-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;
}

.mobile-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;
}

.mobile-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);
}

.mobile-vimeo-play-btn-small i {
    font-size: 1.1rem;
    color: #19365f;
}

/* Volume Button */
.mobile-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;
}

.mobile-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);
}

.mobile-vimeo-volume-btn i {
    font-size: 1.1rem;
    color: #19365f;
}

/* Process Section */
.videography-process-section {
    padding: 6rem 0;
    background: var(--white);
}

.videography-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.videography-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.videography-process-step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.videography-process-step:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.videography-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;
}

.videography-process-step:hover .videography-step-number {
    background: var(--white);
    color: var(--primary-color);
}

.videography-process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.videography-process-step:hover h3 {
    color: var(--white);
}

.videography-process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.videography-process-step:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.videography-cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.videography-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.videography-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.videography-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.videography-cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.videography-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.videography-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;
}

.videography-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.videography-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;
}

.videography-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: 1400px) {
    .hero {
        min-height: 69vh;
    }
    
    .hero-background {
        height: 69vh;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        height: 50vh;
    }
    
    .videography-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
    
    .videography-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 38vh;
    }
    
    .hero-background {
        height: 38vh;
    }
    
    .videography-hero {
        height: 80vh;
    }
    
    .videography-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .videography-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .videography-section-title {
        font-size: 2rem;
    }
    
    .videography-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .videography-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .videography-cta-section {
        padding: 4rem 0;
    }
    
    .videography-cta-title {
        font-size: 2.2rem;
    }
    
    .videography-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .videography-btn-primary,
    .videography-btn-outline {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .videography-hero {
        height: 80vh;
    }
    
    .videography-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .videography-hero-subtitle {
        font-size: 1rem;
    }
    
    .videography-section-title {
        font-size: 1.8rem;
    }
    
    .videography-services-section {
        padding: 4rem 0;
    }
    
    .videography-content-section {
        padding: 4rem 0;
    }
    
    .videography-process-section {
        padding: 4rem 0;
    }
    
    .videography-cta-title {
        font-size: 1.8rem;
    }
    
    .videography-cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 425px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-background {
        height: 50vh;
    }
    
    /* Hide hero video on mobile */
    .hero-video-container {
        display: none;
    }
    
    /* Show mobile full width video section */
    .mobile-full-width-video-section {
        display: block;
        padding: 2rem 0;
    }
    
    /* Mobile video controls responsive */
    .mobile-vimeo-video-controls-bottom {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .mobile-vimeo-play-btn-small,
    .mobile-vimeo-volume-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-vimeo-play-btn-small i,
    .mobile-vimeo-volume-btn i {
        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;
}
