/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Palette */
    --dark-navy: #050508;
    --dark-gray: #121212;
    --medium-gray: #2A2D31;
    --light-gray: #E0E0E0;
    --coral: #FF6F61;
    --teal: #00BFA5;
    
    /* Semantic color assignments */
    --primary-color: #00BFA5;
    --secondary-color: #FF6F61;
    --accent-color: #E0E0E0;
    --dark-color: #050508;
    --light-bg: #2A2D31;
    --medium-bg: #121212;
    --white: #E0E0E0;
    --dark-text: #050508;
    --medium-text: #2A2D31;
    --light-text: #00BFA5;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--medium-bg);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--teal));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 191, 165, 0.4);
    background: linear-gradient(135deg, var(--teal), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 111, 97, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 191, 165, 0.2);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 5px 30px rgba(0, 191, 165, 0.1);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-image {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 111, 97, 0.2);
    border: 3px solid var(--secondary-color);
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 111, 97, 0.4);
}

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

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 191, 165, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--medium-bg) 50%, rgba(0, 191, 165, 0.1) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::after {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.note {
    position: absolute;
    color: rgba(0, 191, 165, 0.15);
    pointer-events: none;
    animation: popUp 2s ease-out infinite, randomMove 10s ease-out infinite;
}

@keyframes popUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes randomMove {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10%, 5%);
    }
    50% {
        transform: translate(-5%, 10%);
    }
    75% {
        transform: translate(5%, -5%);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 191, 165, 0.2);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    line-height: 1.8;
}

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

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(255, 111, 97, 0.2);
    transition: transform 0.3s ease;
    border: 5px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, 
                linear-gradient(135deg, var(--accent-color), var(--secondary-color), var(--primary-color)) border-box;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Section Styles */
section {
    padding: 6rem 0;
    scroll-margin-top: 80px;
    position: relative;
}

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

.section-title {
    color: var(--light-gray);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--medium-bg) 0%, rgba(0, 191, 165, 0.1) 100%);
    position: relative;
}

.about::before {
    content: '♬ ♪ ♫ ♩ ♬ ♪ ♫ ♩ ♬ ♪ ♫ ♩';
    position: absolute;
    top: 20%;
    right: -5%;
    font-size: 1.8rem;
    color: rgba(0, 191, 165, 0.12);
    transform: rotate(20deg);
    pointer-events: none;
    white-space: nowrap;
}

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

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

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.about-text ul li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, 
                linear-gradient(135deg, var(--accent-color), var(--secondary-color)) border-box;
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 191, 165, 0.2);
}

.stat-item h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--medium-text);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-secondary) border-box;
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 40px 100px rgba(138, 43, 226, 0.4);
}

/* Videos Section - Premium */
.videos {
    background: var(--pure-white);
    position: relative;
}

.videos::after {
    content: '♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬';
    position: absolute;
    bottom: 20%;
    left: -5%;
    font-size: 2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-30deg);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.2;
}

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

.video-card {
    background: var(--pure-white);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-accent) border-box;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
    position: relative;
}

.video-card::before {
    content: '♫';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    opacity: 0.6;
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.25);
}

.video-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

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

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    color: var(--charcoal);
    background: rgba(255, 69, 0, 0.1);
    border-radius: 30px;
    border: 3px solid var(--vibrant-orange);
}

.error-message p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.videos-cta {
    text-align: center;
}

/* Services Section - Premium */
.services {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, var(--pure-white) 50%, rgba(255, 20, 147, 0.05) 100%);
    position: relative;
}

.services::before {
    content: '♫ ♬ ♪ ♩ ♫ ♬ ♪ ♩ ♫ ♬ ♪ ♩ ♫ ♬ ♪ ♩';
    position: absolute;
    top: 25%;
    left: 5%;
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-25deg);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.15;
}

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

.service-card {
    background: var(--pure-white);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-accent) border-box;
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '♪';
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    opacity: 0.4;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 20, 147, 0.05), transparent);
    animation: rotate 6s linear infinite;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 35px 90px rgba(255, 20, 147, 0.2);
}

.service-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.4));
    animation: bounce 2s ease-in-out infinite;
}

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

.service-card h3 {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Team Section - Premium */
.team {
    background: var(--pure-white);
    position: relative;
}

.team::after {
    content: '♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫';
    position: absolute;
    top: 30%;
    right: 5%;
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    transform: rotate(30deg);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.15;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--pure-white);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
    /* border: 4px solid transparent; */
    background: linear-gradient(white, white) padding-box, var(--gradient-accent) border-box;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.15);
}

.team-card::before {
    content: '♪';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    z-index: 1;
    opacity: 0.5;
}

.team-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(138, 43, 226, 0.25);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 3rem;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.team-role {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.team-description {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.team-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(var(--platinum), var(--platinum)) padding-box, var(--gradient-accent) border-box;
}

.team-social .social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.team-social .social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, var(--electric-blue));
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4);
}

/* Contact Section - Premium */
.contact {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, var(--pure-white) 50%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
}

.contact::before {
    content: '♬ ♪ ♫ ♩ ♬ ♪ ♫ ♩ ♬ ♪ ♫ ♩ ♬ ♪ ♫ ♩';
    position: absolute;
    bottom: 25%;
    right: 5%;
    font-size: 2.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(30deg);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.15;
}

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

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    font-size: 2rem;
}

.contact-item h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 1.2rem 2rem;
    background: var(--pure-white);
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-accent) border-box;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #ff0000, var(--hot-pink));
    color: var(--pure-white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--pure-white);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, var(--electric-blue));
    color: var(--pure-white);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, var(--electric-blue));
    color: var(--pure-white);
}

/* Contact Form - White Theme */
.contact-form {
    background: white; /* Set the background to white */
    padding: 4rem;
    border-radius: 40px;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-accent) border-box;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

/* .contact-form::before {
    content: '♫';
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
} */

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    background: white; /* Set the background to white */
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-secondary) border-box;
    border-radius: 20px;
    color: var(--deep-black); /* Dark text for readability */
    font-family: inherit;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2); /* Add a glowing effect on focus */
    transform: translateY(-3px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--charcoal); /* Light charcoal color for placeholder text */
    font-weight: 600;
    opacity: 0.7;
}


/* Footer - Premium */
.footer {
    background: linear-gradient(135deg, var(--platinum) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 5rem 0 2rem;
    border-top: 4px solid transparent;
    background-image: linear-gradient(var(--platinum), var(--platinum)), var(--gradient-accent);
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
}

.footer::before {
    content: '♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    opacity: 0.3;
}

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

.footer-section h3,
.footer-section h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
}

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

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

.footer-section a {
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section a:hover {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 3px solid transparent;
    background-image: linear-gradient(var(--platinum), var(--platinum)), var(--gradient-accent);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.footer-bottom p {
    color: var(--charcoal);
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        padding: 2rem 0;
        border: 3px solid transparent;
        background-image: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)), var(--gradient-accent);
        background-origin: border-box;
        background-clip: content-box, border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: center;
        position: relative;
    }
    
    .logo-container {
        height: 60px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .hamburger {
        position: absolute;
        right: 1rem;
    }

    /* Hide musical notes on mobile for better performance */
    .hero::after,
    .about::before,
    .videos::after,
    .services::before,
    .team::after,
    .contact::before,
    .footer::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card,
    .contact-form {
        padding: 2.5rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Premium Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--platinum);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Additional premium effects */
.fade-in {
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Premium pulsing effect for interactive elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-icon:hover {
    animation: pulse 1.5s ease-in-out;
}

/* Premium shine effect */
@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::after {
    left: 100%;
}