/* Animated Background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(15px) rotate(-3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50px, -200px) scale(0.8);
        opacity: 0.7;
    }
    75% {
        transform: translate(150px, -150px) scale(1.1);
        opacity: 0.4;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Full page animated background for Home */
.home-page {
    background: linear-gradient(-45deg, #0a0a0a, #111111, #0f0f0f, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: floatParticle 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 70%;
    top: 10%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 85%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 16s;
}

/* Hero Sections */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #0f0f0f, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #00ff88;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #c0c0c0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #b0b0b0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.2s ease-out 0.5s backwards;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 3px;
    background: #2a2a2a;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    animation: float 6s ease-in-out infinite;
}

.image-container:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    animation-play-state: paused;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    max-width: 100%;
    display: block;
}

.hero-photo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
    filter: brightness(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #00ff88;
    border-bottom: 2px solid #00ff88;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Preview Section */
/* Scroll Animation Classes */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow-x: hidden;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    color: #b0b0b0;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 3px;
    background: #2a2a2a;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.about-image:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.about-photo {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block;
    transition: transform 0.2s ease;
}

.about-photo:hover {
    transform: scale(1.01);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* News & Events Section */
.news-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow-x: hidden;
    position: relative;
}

.news-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.news-preview .section-header h2 {
    color: #e0e0e0;
}

.news-preview .section-header p {
    color: #b0b0b0;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.news-card {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #1a1a1a;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #00ff88;
    color: #0a0a0a;
    padding: 1rem;
    min-width: 80px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.news-date .year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.news-content p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.news-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
}

.news-link:hover {
    text-decoration: underline;
}

/* YouTube Section */
.youtube-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    border-bottom: 1px solid #1a1a1a;
    overflow-x: hidden;
    position: relative;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 40%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.video-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2a2a2a;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.15);
}

.video-card.featured {
    grid-column: span 2;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-thumbnail-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-thumbnail-link:hover {
    transform: translateY(-3px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.video-thumbnail img[src=""],
.video-thumbnail img:not([src]) {
    content: '';
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.video-play-overlay i {
    font-size: 3rem;
    color: white;
    margin-left: 5px;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    display: block;
}

/* Fallback Thumbnail Styles */
.video-thumbnail-fallback {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6f 50%, #009955 100%);
    opacity: 0.1;
    z-index: 1;
}

.fallback-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 136, 0.03) 10px,
        rgba(0, 255, 136, 0.03) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.fallback-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #e0e0e0;
}

.fallback-text i {
    font-size: 4rem;
    color: #00ff88;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.fallback-text span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ff88;
}

.video-thumbnail-fallback:hover .fallback-text i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.video-thumbnail-fallback:hover .fallback-bg {
    opacity: 0.15;
    transition: opacity 0.2s ease;
}

.video-content {
    padding: 1.5rem;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 255, 136, 0.2);
    border: 2px solid #00ff88;
    transform: scale(0.9);
    transition: transform 0.2s ease;
    z-index: 10001;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: #00ff88;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10002;
}

.video-modal-close:hover {
    background: #00cc6f;
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-error-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.video-error-message i {
    font-size: 4rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.video-error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.video-error-message p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.video-error-message .btn {
    margin-top: 1rem;
}

.video-modal-footer {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.video-modal-hint {
    margin: 0;
    font-size: 0.875rem;
    color: #888;
}

.video-modal-hint i {
    color: #00ff88;
    margin-right: 0.5rem;
}

.video-modal-hint a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.video-modal-hint a:hover {
    color: #00cc6f;
    text-decoration: underline;
}

.video-modal-info {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.video-modal-info p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.875rem;
}

.video-modal-info i {
    color: #00ff88;
    margin-right: 0.5rem;
}

.video-modal-info a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.video-modal-info a:hover {
    color: #00cc6f;
    text-decoration: underline;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 100%;
        border-radius: 0;
    }
    
    .video-modal-close {
        top: 5px;
        right: 5px;
    }
}

.video-content h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.video-content p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #888;
}

.views {
    color: #00ff88;
}

.video-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.video-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-actions .btn i {
    font-size: 1.1rem;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    overflow-x: hidden;
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media (max-width: 640px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.instagram-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
    text-decoration: none;
    aspect-ratio: 1;
    border: 2px solid #2a2a2a;
}

.instagram-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.instagram-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.instagram-placeholder-bg {
    background: #1a1a1a;
}

.instagram-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.instagram-card:hover .instagram-thumbnail {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 1;
    transition: all 0.2s ease;
}

.instagram-card:hover .instagram-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.instagram-overlay i {
    font-size: 3rem;
    color: #00ff88;
    transition: transform 0.2s ease;
}

.instagram-overlay p {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.instagram-card:hover .instagram-overlay i {
    transform: scale(1.2);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #00ff88;
    font-size: 3rem;
}

.instagram-placeholder i {
    font-size: 3rem;
}

.instagram-placeholder p {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Index Page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .hero-photo {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 10px 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .video-card {
        min-width: 0;
        width: 100%;
    }

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

    .about-image {
        max-width: 100%;
        margin-top: 2rem;
    }

    .about-photo {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .hero {
        overflow: hidden;
        max-width: 100vw;
    }
    
    .scroll-indicator {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        padding: 0;
        min-width: 0;
    }

    .video-card {
        min-width: 0;
        width: 100%;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-image,
    .image-container,
    .hero-photo,
    img {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-card.featured {
        grid-column: span 1;
    }
}

