:root {
    --primary-bg: #0a0a1a;
    --secondary-bg: #1a1a2e;
    --accent-primary: #ff0080; /* Hot Pink */
    --accent-secondary: #00d4ff; /* Electric Blue */
    --accent-tertiary: #bd00ff; /* Purple */
    --text-primary: #ffffff;
    --text-secondary: #b0b0d0;
    --gradient-glow: linear-gradient(135deg, #ff0080, #bd00ff, #00d4ff);
    --gradient-reverse: linear-gradient(135deg, #00d4ff, #bd00ff, #ff0080);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Skip to main content link - Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Improved focus visibility for accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 2px;
}

/* Floating Social Media Sidebar */
.floating-social {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(100px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.floating-social-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    background: var(--accent-primary);
    text-align: center;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 25px;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.floating-social-title:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.6);
    background: linear-gradient(135deg, #ff0080, #ff3399);
}

.floating-social-title:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-icon,
.arrow-icon {
    flex-shrink: 0;
}

.arrow-icon {
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
}

.social-icon:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
}

.social-label {
    position: absolute;
    right: 65px;
    background: rgba(10, 10, 10, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover .social-label {
    opacity: 1;
    transform: translateX(-5px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.bg-animation::before,
.bg-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
}

.bg-animation::before {
    background: #ff0080; /* Hot Pink */
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-animation::after {
    background: #00d4ff; /* Electric Blue */
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(120px, -120px) scale(1.2); }
    66% { transform: translate(-120px, 120px) scale(0.8); }
}

/* Header/Hero Section */
header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('/images/DJSantosh-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(189, 0, 255, 0.25), rgba(0, 212, 255, 0.35));
    z-index: 1;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, 
        #ff006e 0%,      /* Hot Pink */
        #ff4db8 15%,     /* Pink */
        #bd00ff 30%,     /* Purple */
        #8b5cf6 45%,     /* Violet */
        #00d9ff 60%,     /* Cyan */
        #00b4d8 75%,     /* Blue */
        #00ffff 100%     /* Bright Cyan */
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: gradientShift 4s ease infinite, heroGlow 3s ease-in-out infinite alternate;
}

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

@keyframes heroGlow {
    from { 
        filter: drop-shadow(0 0 30px rgba(189, 0, 255, 0.6)) 
                drop-shadow(0 0 50px rgba(0, 217, 255, 0.4)); 
    }
    to { 
        filter: drop-shadow(0 0 50px rgba(255, 0, 110, 0.6)) 
                drop-shadow(0 0 70px rgba(0, 217, 255, 0.6)); 
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.6);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.3));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

/* Sections */
section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-glow);
}

/* About Section */
#about {
    background: var(--secondary-bg);
    border-radius: 20px;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background-image: url('/images/DJSantosh-3.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(5px) hue-rotate(200deg); /* Blue tint */
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ff0080, #bd00ff, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Section - Carousel */
#gallery {
    padding: 8rem 5%;
}

.gallery-container {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.gallery-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 1rem 0;
}

.gallery-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.gallery-item {
    position: relative;
    min-width: calc(33.333% - 1.35rem); /* Show 3 items */
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff0080, #bd00ff, #00d4ff);
    cursor: pointer;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 2;
}

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

.gallery-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-date {
    color: var(--accent-secondary);
    font-size: 0.9rem;
}

/* Placeholder for actual images */
.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.5;
    z-index: 0;
}

/* Navigation Buttons */
.gallery-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.gallery-nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.5);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Videos Section */
#videos {
    padding: 8rem 5%;
    background: var(--secondary-bg);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: left;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-info {
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
#services {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.services-grid.three-column {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-glow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

.anchor-button {
    background: #bd00ff; /* Purple */
}

.anchor-button:hover {
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.5);
}

.organizer-button {
    background: #00d4ff; /* Electric Blue */
}

.organizer-button:hover {
    background: #00bbff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* Partner Section */
.partner-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.partner-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 204, 0.15);
}

.partner-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.partner-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partner-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-secondary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.partner-button:hover {
    background: var(--accent-secondary);
    color: var(--primary-bg);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Contact Section */
#contact {
    background: var(--secondary-bg);
    border-radius: 20px;
    padding: 6rem 5%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.submit-btn {
    padding: 1.2rem 3rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: var(--primary-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 45px; /* Smaller logo on mobile */
    }

    .logo-text {
        display: none; /* Hide text on mobile to save space */
    }

    /* Move floating social to bottom on mobile */
    .floating-social {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 1rem;
        transform: translateX(-50%);
        flex-direction: row;
        background: rgba(10, 10, 10, 0.95);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        gap: 1.5rem;
    }

    .floating-social-title {
        display: none; /* Hide title on mobile to save space */
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-label {
        display: none; /* Hide labels on mobile to save space */
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    /* Gallery carousel on mobile */
    .gallery-container {
        gap: 1rem;
    }

    .gallery-item {
        min-width: 85%; /* Show 1 item mostly on mobile */
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }

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

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

    .partner-card {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 5rem 5%;
    }
}

/* Respect user motion preferences - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
