/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 2px 30px rgba(230, 34, 34, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e62222;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e62222;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255,255,255,0.9);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #111111;
    background-image:
        radial-gradient(ellipse 100% 55% at 50% 0%, rgba(160, 8, 8, 0.18) 0%, transparent 65%),
        repeating-linear-gradient(
            168deg,
            transparent 0px, transparent 5px,
            rgba(255,255,255,0.012) 5px, rgba(255,255,255,0.012) 6px,
            transparent 6px, transparent 14px,
            rgba(255,255,255,0.007) 14px, rgba(255,255,255,0.007) 15px
        ),
        repeating-linear-gradient(
            80deg,
            transparent 0px, transparent 8px,
            rgba(255,255,255,0.006) 8px, rgba(255,255,255,0.006) 9px
        );
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* ── Pulse / strobe lights (hero + all dark sections) ── */
.hero-pulses,
.section-pulses {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@keyframes hpFlash {
    0%   { opacity: 0; transform: scale(0.85); }
    12%  { opacity: 1; transform: scale(1); }
    30%  { opacity: 0.6; }
    55%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.hp {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,20,20,0.55) 0%, rgba(200,10,10,0.22) 40%, transparent 72%);
    opacity: 0;
    animation: hpFlash linear infinite;
}

/* Lift inner content above pulse layer in all dark sections */
.hero-container,
.reviews-section > .container,
.stats-bar > .container,
.services > .container,
.podcast > .container,
.contact > .container,
.footer > .container {
    position: relative;
    z-index: 1;
}

/* Each pulse: unique position, size, delay, duration */
.hp1  { width: 320px; height: 320px; top:  5%; left:  8%;  animation-duration: 4.1s;  animation-delay: 0s;    }
.hp2  { width: 260px; height: 260px; top: 55%; left: 18%;  animation-duration: 5.7s;  animation-delay: 1.3s;  }
.hp3  { width: 400px; height: 400px; top: 10%; left: 45%;  animation-duration: 6.2s;  animation-delay: 0.7s;  }
.hp4  { width: 220px; height: 220px; top: 70%; left: 60%;  animation-duration: 3.8s;  animation-delay: 2.5s;  }
.hp5  { width: 350px; height: 350px; top: 20%; left: 78%;  animation-duration: 5.1s;  animation-delay: 1.8s;  }
.hp6  { width: 180px; height: 180px; top: 80%; left:  5%;  animation-duration: 4.6s;  animation-delay: 3.2s;  }
.hp7  { width: 280px; height: 280px; top: 35%; left: 30%;  animation-duration: 7.0s;  animation-delay: 0.4s;  }
.hp8  { width: 240px; height: 240px; top: 60%; left: 82%;  animation-duration: 4.3s;  animation-delay: 2.1s;  }
.hp9  { width: 300px; height: 300px; top:  0%; left: 62%;  animation-duration: 5.5s;  animation-delay: 3.9s;  }
.hp10 { width: 200px; height: 200px; top: 45%; left: 50%;  animation-duration: 3.5s;  animation-delay: 1.0s;  }

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #e62222;
    color: white;
    border: 2px solid #e62222;
    animation: btnPulse 2.5s infinite;
}

.btn-primary:hover {
    background: transparent;
    color: #e62222;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 34, 34, 0.4);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #111111;
    transform: translateY(-2px);
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 700px;
    margin-top: -2rem;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #e62222, #ff4444, #cc1111);
    border-radius: 2px;
    margin: 10px auto 0;
    transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header.revealed h2::after {
    width: 80px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* About Section */
.about {
    background: linear-gradient(160deg, #f9f9f9 0%, #f5f5f5 45%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 34, 34, 0.07) 0%, rgba(180, 10, 10, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(230, 34, 34, 0.06) 0%, rgba(230, 34, 34, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-philosophy blockquote {
    border-left: 4px solid #e62222 !important;
    background: linear-gradient(135deg, rgba(230,34,34,0.06) 0%, rgba(180,10,10,0.04) 100%) !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e62222;
}

.about-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: #e62222;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    height: 350px;
    position: relative;
}

.about-image-secondary {
    height: auto;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    border-radius: 15px;
}

.image-placeholder {
    height: 100%;
    background: #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-story {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(230, 34, 34, 0.06) 0%, rgba(180, 10, 10, 0.04) 100%);
    border-radius: 15px;
    border-left: 4px solid #e62222;
}

.about-story p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-philosophy {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-philosophy blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.about-philosophy cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #e62222;
    font-size: 1rem;
}

.about-content-preview,
.about-content-full {
    transition: all 0.3s ease;
}

.about-content-full {
    margin-top: 1rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #e62222 0%, #cc1111 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 34, 0.4);
}

.read-more-btn:active {
    transform: translateY(0);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(230, 34, 34, 0.12), 0 0 0 2px rgba(230, 34, 34, 0.4);
    border-color: rgba(230, 34, 34, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e62222 0%, #cc1111 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    background: #f8f9fa;
}

.portfolio-category {
    margin-bottom: 3rem;
}

.portfolio-subtitle {
    text-align: center;
    color: #e62222;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.video-gallery, .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* See More Container */
.see-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-more-card {
    background: linear-gradient(135deg, #e62222 0%, #cc1111 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.see-more-card:hover {
    transform: translateY(-5px);
}

.see-more-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.see-more-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.see-more-content p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.see-more-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Gallery Modal */
.gallery-modal {
    display: none !important;
    position: fixed !important;
    z-index: 9999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(5px);
}

.gallery-modal[style*="display: flex"] {
    display: flex !important;
}

.gallery-modal-content {
    background: white;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

@keyframes modalSlideIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #e62222 0%, #cc1111 100%);
    color: white;
}

.gallery-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.gallery-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.full-video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .video-gallery, .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-item iframe {
        height: 200px;
    }
    
    .gallery-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .gallery-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .gallery-modal-body {
        padding: 1.5rem;
    }
    
    .full-video-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .see-more-card {
        padding: 1.5rem;
    }
}

.empty-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed #ddd;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e62222;
}

.empty-gallery p {
    color: #666;
    margin: 0.5rem 0;
}

.empty-gallery p:first-of-type {
    font-weight: 600;
    font-size: 1.2rem;
    color: #e62222;
}

/* Photo overlay and modal styles */
.photo-preview {
    position: relative;
    height: 250px;
    cursor: pointer;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(20, 0, 0, 0.75), rgba(180, 10, 10, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.photo-preview:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.photo-overlay p {
    margin: 0;
    font-weight: 500;
}

/* Photo modal styles */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.photo-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.photo-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.photo-modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.photo-modal-info {
    padding: 1.5rem;
}

.photo-modal-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.photo-modal-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Photo gallery modal styles */
.photo-gallery-modal .gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
}

.gallery-photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover {
    transform: scale(1.05);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
}

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover .gallery-photo-overlay {
    transform: translateY(0);
}

.gallery-photo-overlay h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Default portfolio grid for videos */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Photo gallery specific - always show exactly 3 columns */
#photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Make sure album items take full width of their grid cell */
#photo-gallery .portfolio-item {
    width: 100%;
}

/* Album placeholder styling */
.album-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 2px dashed #dee2e6;
}

.album-placeholder-overlay {
    opacity: 1 !important;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.8), rgba(134, 142, 150, 0.8)) !important;
}

.album-placeholder-overlay .album-info {
    text-align: center;
}

.album-placeholder-overlay .album-info i {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for photo gallery */
@media (max-width: 768px) {
    #photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #photo-gallery .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 250px;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(20, 0, 0, 0.75), rgba(180, 10, 10, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-image i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-image i {
    color: white;
}

.portfolio-image p {
    z-index: 2;
    position: relative;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-image p {
    color: white;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Album-specific styles */
.album-item {
    cursor: pointer;
}

/* Album cover photo styling - show full image without cropping */
.album-item .album-preview {
    position: relative;
    height: 250px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Override any background-size cover rules for album covers */
.portfolio-item.album-item .portfolio-image.album-preview {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(200, 10, 10, 0.85), rgba(230, 34, 34, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.album-item:hover .album-info {
    transform: translateY(0);
}

.album-info i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.album-info p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.album-view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-view-btn:hover {
    background: white;
    color: #e62222;
    transform: scale(1.05);
}

.additional-albums-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.additional-albums-info p {
    font-style: italic;
    color: #888;
    background: rgba(230, 34, 34, 0.08);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #e62222;
}

.portfolio-info p {
    color: #666;
    margin: 0;
}

/* Video placeholder styles */
.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: rgba(44, 90, 160, 0.05);
}

.video-placeholder p {
    margin: 10px 0;
    font-weight: 600;
    color: #333;
}

.video-placeholder a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.video-placeholder a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

/* Portfolio iframe styling */
.portfolio-item iframe {
    border-radius: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image styling for uploaded photos */
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
}

/* Image placeholder for failed loads */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(44, 90, 160, 0.1);
    color: rgba(44, 90, 160, 0.6);
}

.image-placeholder i {
    font-size: 3em;
    margin-bottom: 10px;
}

/* Podcast Section */
.podcast {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    color: white;
    position: relative;
}

.podcast .section-header h2 {
    color: #ffffff;
}

.podcast .section-header p {
    color: rgba(255,255,255,0.75);
}

.podcast-info h3 {
    color: #ffffff;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.podcast-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.podcast-info p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.podcast-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.podcast-video .video-placeholder {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.podcast-video .video-placeholder i {
    font-size: 4rem;
    color: white;
}

.podcast-video .video-placeholder small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    color: white;
    position: relative;
}

.contact .section-header h2 {
    color: #ffffff;
}

.contact .section-header p {
    color: rgba(255,255,255,0.75);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact items — white text on dark bg */
.contact-item h3 { color: #ffffff !important; }
.contact-item p  { color: rgba(255,255,255,0.8) !important; }
.contact-item i  { color: #e62222 !important; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e62222;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e62222, #cc1111);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 34, 34, 0.35);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff3333, #e62222);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(230, 34, 34, 0.5);
}

.contact-form {
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e62222;
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Name fields styling */
.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex-wrap: wrap;
}

.name-field {
    display: flex;
    flex-direction: column;
}

.name-field small {
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* Phone fields styling */
.phone-fields {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-fields input {
    flex: 1;
    max-width: 80px;
    text-align: center;
}

.phone-fields span {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Date fields styling */
.date-fields {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.date-fields input {
    flex: 1;
    text-align: center;
}

.date-fields input:first-child {
    max-width: 60px;
}

.date-fields input:nth-child(2) {
    max-width: 60px;
}

.date-fields input:last-child {
    max-width: 80px;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-section p {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #e62222;
}

.footer-section ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #e62222, #cc1111);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230,34,34,0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(12px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.4);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-menu .nav-link {
        color: rgba(255,255,255,0.85);
        padding: 0.75rem 0;
        display: block;
    }

    .nav-menu .nav-link:hover {
        color: #e62222;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Nav logo — shrink on tablet so it doesn't crowd the hamburger */
    .nav-logo h2 {
        font-size: 1.15rem;
    }

    /* Hero — let content breathe instead of clipping at 100vh */
    .hero {
        height: auto;
        min-height: 100vh;  /* fallback for older browsers */
        min-height: 100svh; /* modern browsers: excludes browser chrome */
        padding-bottom: 5rem; /* clearance for hero wave */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-video {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* About images — shorter on tablet/mobile */
    .about-image,
    .about-image-secondary {
        height: 260px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .podcast-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-features {
        margin-top: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    /* Nav logo — very small screens */
    .nav-logo h2 {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Name fields — stack vertically on small screens */
    .name-fields {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* About images — even shorter on phones */
    .about-image,
    .about-image-secondary {
        height: 210px;
    }

    /* Podcast features — tighter on phones */
    .podcast-features {
        gap: 1rem;
    }

    /* Stats — slightly smaller numbers on phones */
    .stat-number-wrap {
        font-size: 2.2rem;
    }
}

/* Touch devices: replace hover glow with a static accent border so cards
   still feel polished without requiring hover */
@media (hover: none) {
    .service-card {
        border-color: rgba(197, 113, 237, 0.25);
    }

    .service-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: rgba(197, 113, 237, 0.25);
    }

    .service-card:hover .service-icon {
        transform: none;
    }

    /* Disable translateY lift on portfolio items too */
    .portfolio-item:hover {
        transform: none;
    }

    /* Ensure photo overlay is always slightly visible on touch */
    .photo-overlay {
        opacity: 0.85;
        background: linear-gradient(to top, rgba(180, 10, 10, 0.7), transparent);
        justify-content: flex-end;
        padding-bottom: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}


/* Featured Video Section */
.featured-video-section {
    padding: 3rem 0;
    background: transparent;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.featured-video-container {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.featured-video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.featured-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.featured-video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    padding: 1.5rem 0;
    text-align: center;
}

.featured-video-info h3 {
    margin: 0 0 1rem 0;
    color: #e62222;
    font-size: 1.5rem;
}

.featured-video-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.featured-video-container .video-placeholder {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
}

.featured-video-container .video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.featured-video-container .video-placeholder p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

.featured-video-container .video-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .featured-video-container iframe,
    .featured-video-container .video-placeholder {
        height: 300px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0 4rem 0;
    background: linear-gradient(160deg, #0f0f0f 0%, #111111 50%, #0a0a0a 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
    clear: both;
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    transition: height 0.4s ease;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    z-index: 1;
}

.review-slide.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    z-index: 2;
}

.review-card {
    background: rgba(255, 255, 255, 0.12) !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    text-align: center;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 700px;
    box-sizing: border-box;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.review-author h4 {
    color: #ff4444;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.review-author span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #e62222;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .reviews-carousel {
        /* height is set dynamically by JS; no fixed value needed */
    }

    .review-card {
        height: auto !important;
        padding: 1.75rem 1.5rem !important;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-carousel {
        /* height is set dynamically by JS; no fixed value needed */
    }

    .review-card {
        padding: 1.5rem 1.25rem !important;
    }

    .review-text {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .review-author h4 {
        font-size: 1rem;
    }
}

/* ---------------------------------------------
   ANIMATION KEYFRAMES
   --------------------------------------------- */

/* Entrance: soft fade up — no aggressive scale pop */
@keyframes wordEnter {
    0%   { opacity: 0; transform: translateY(14px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Continuous gentle float after entrance — each word bobs at its own phase */
@keyframes wordFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
}

.pop-word {
    display: inline-block;
    opacity: 0;
    /* wordEnter fades in (opacity + Y), then wordFloat loops forever.
       They animate different properties so there's no conflict. */
    animation:
        wordEnter 0.7s ease-out forwards,
        wordFloat 3.8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes btnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(230, 34, 34, 0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(230, 34, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 34, 34, 0); }
}

@keyframes statPop {
    from { opacity: 0; transform: scale(0.6) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes navLogoShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ---------------------------------------------
   HERO WAVE DIVIDER
   --------------------------------------------- */

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ---------------------------------------------
   SECTION WAVE DIVIDERS
   --------------------------------------------- */

.section-wave {
    line-height: 0;
    overflow: hidden;
    margin-bottom: -2px;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* Wave heights — must come AFTER the 70px base rules above to win the cascade */
@media (max-width: 768px) {
    .section-wave svg {
        height: 45px;
    }

    .hero-wave svg {
        height: 50px;
    }
}

/* ---------------------------------------------
   NAV LOGO — logo image
   --------------------------------------------- */

.nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* ---------------------------------------------
   HERO VIDEO — glass frame
   --------------------------------------------- */

.hero-video {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

/* ---------------------------------------------
   STATS BAR
   --------------------------------------------- */

.stats-bar {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    padding: 4rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.counted {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-number-wrap {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #e62222 0%, #ff4444 50%, #e62222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .stat-number-wrap {
        font-size: 2.5rem;
    }
}

/* ---------------------------------------------
   SERVICES SECTION — dark background
   --------------------------------------------- */

.services {
    background: linear-gradient(160deg, #0f0f0f 0%, #111111 55%, #0a0a0a 100%);
    position: relative;
}

/* Section header on dark backgrounds */
.services .section-header h2,
.contact .section-header h2 {
    color: #ffffff;
}

.services .section-header p,
.contact .section-header p {
    color: rgba(255, 255, 255, 0.72);
}

.services .section-header h2::after,
.contact .section-header h2::after {
    background: linear-gradient(90deg, #e62222, #ff4444, #cc1111);
}

/* Service cards on dark bg — keep white, add stronger glow */
.services .service-card {
    background: rgba(255, 255, 255, 0.97);
}

.services .service-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(230, 34, 34, 0.5);
    border-color: rgba(230, 34, 34, 0.4);
}

.service-icon {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* ---------------------------------------------
   SCROLL-REVEAL — enhanced
   --------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   MOBILE — comprehensive fixes for all visual upgrades
   ============================================= */

@media (max-width: 768px) {

    /* Waves — shorter on mobile */
    .section-wave svg,
    .hero-wave svg {
        height: 40px;
    }

    /* Name fields — stack on narrow screens */
    .name-fields {
        grid-template-columns: 1fr;
    }

    /* Phone fields — let them wrap */
    .phone-fields {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .phone-fields input {
        max-width: none;
        flex: 1 1 60px;
    }

    /* Prevent horizontal overflow from slide-in animations */
    .reveal-left,
    .reveal-right {
        transform: translateY(30px);
    }
    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0);
    }

    /* Stats bar — comfortable 2×2 */
    .stats-bar {
        padding: 3rem 0;
    }

    /* Podcast dark section — reduce padding */
    .podcast {
        padding: 4rem 0;
    }

    /* Contact dark section — reduce padding */
    .contact {
        padding: 4rem 0;
    }

    /* Contact form — full padding inside */
    .contact-form {
        padding: 1.5rem;
    }

    /* Services dark section */
    .services {
        padding: 4rem 0;
    }

    /* Review card — height driven by JS; no fixed size */
    .reviews-carousel {
        height: auto;
    }
    .review-card {
        height: auto !important;
        padding: 1.75rem 1.25rem !important;
    }

    /* Section header underline stays centered */
    .section-header h2::after {
        margin: 0.5rem auto 0;
    }

    /* Footer columns — stack cleanly */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {

    /* Waves even shorter on tiny screens */
    .section-wave svg,
    .hero-wave svg {
        height: 28px;
    }

    /* Footer — full single column */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Stats — readable numbers on small phones */
    .stat-number-wrap {
        font-size: 2rem;
    }

    /* Review text — smaller on tiny screens */
    .review-text {
        font-size: 0.95rem;
    }

    /* Contact items — reduce icon size */
    .contact-item i {
        font-size: 1.3rem;
        min-width: 32px;
    }

    /* Name fields — already 1 col at 768, stays 1 col */
    .name-fields {
        grid-template-columns: 1fr;
    }
}

/* ── Instagram Feed Section ────────────────────────────────── */
.instagram-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section .section-header h2 {
    color: #ffffff;
}

.instagram-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e62222;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.75rem;
    transition: opacity 0.2s ease;
}

.instagram-handle:hover {
    opacity: 0.8;
}

.instagram-handle i {
    font-size: 1.3rem;
}
