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

body {
    font-family: 'Manrope', 'Satoshi', 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', system-ui, sans-serif;
    line-height: 1.55;
    color: #1a1a1a;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 1px;
    font-feature-settings: 'ss01' on, 'ss02' on;
}

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

/* Header Styles */
.header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideInDown 0.8s ease-out;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff1493, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.trademark {
    font-size: 0.8rem;
    vertical-align: super;
    background: linear-gradient(135deg, #ff1493, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    margin-left: 3px;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}

.nav-menu a:hover {
    color: #ff1493;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff1493, #ff6b35);
    transition: width 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #ff1493;
    filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 20, 147, 0.3);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 107, 53, 0.2));
    color: #ff1493;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.3) saturate(1.2);
    will-change: filter;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 20, 147, 0.4) 0%,
        rgba(255, 107, 53, 0.3) 30%,
        rgba(15, 15, 15, 0.6) 70%,
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #ff1493, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
    position: relative;
    letter-spacing: -1px;
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Italiana', serif;
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.4s both;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.2px;
    font-style: italic;
    line-height: 1.4;
    transition: all 0.8s ease-in-out;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.5px;
    font-style: italic;
}

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

.mission-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 20, 147, 0.08) 100%);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.6s;
}

.mission-box:hover::before {
    left: 100%;
}

.mission-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.25);
    border-color: rgba(255, 20, 147, 0.4);
}

.mission-icon {
    margin-bottom: 2rem;
    color: #ff1493;
    transition: all 0.4s ease;
    position: relative;
}

.mission-icon svg {
    filter: drop-shadow(0 5px 15px rgba(255, 20, 147, 0.3));
    transition: all 0.3s ease;
}

.mission-box:hover .mission-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(255, 20, 147, 0.5));
}

.mission-box h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1px;
}

.mission-box:nth-child(1) { animation-delay: 0.1s; }
.mission-box:nth-child(2) { animation-delay: 0.2s; }
.mission-box:nth-child(3) { animation-delay: 0.3s; }

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
}

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

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 20, 147, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 20, 147, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.08), transparent);
    transition: left 0.6s;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 80px rgba(255, 20, 147, 0.25);
    border-color: rgba(255, 20, 147, 0.4);
}

.team-image {
    margin-bottom: 2rem;
    position: relative;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 107, 53, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.team-card:hover .image-placeholder {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.team-card:hover .image-placeholder::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.image-placeholder svg {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.team-card:hover .image-placeholder svg {
    color: #ff1493;
    transform: scale(1.1);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    font-style: italic;
    letter-spacing: -0.5px;
}

.team-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-bio {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1px;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 70%);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    margin-bottom: 2rem;
    color: #ff1493;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon svg {
    filter: drop-shadow(0 5px 15px rgba(255, 20, 147, 0.3));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(255, 20, 147, 0.5));
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.5);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.service-link {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff1493, #ff6b35);
    transition: width 0.3s ease;
}

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

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #ff1493 50%, #ff6b35 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.approach-section .section-title {
    color: white;
}

.approach-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 1s ease-out;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
}

.contact-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 20, 147, 0.08) 100%);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.25);
    border-color: rgba(255, 20, 147, 0.4);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff1493, #ff6b35);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: #ff1493;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer p {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin: 0;
}

.footer p:hover {
    opacity: 1;
}

.footer .social-icons {
    display: flex;
    gap: 2rem;
}

.footer .social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.2);
}

.footer .social-icons a:hover {
    color: #ff1493;
    transform: scale(1.5) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.6));
}

.footer .social-icons a svg {
    transition: all 0.3s ease;
}

.footer .social-icons a:hover svg {
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8));
}

/* Animations and Keyframes */
@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 20, 147, 0.8), 0 0 40px rgba(255, 107, 53, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Enhanced hover effects */
.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
    color: #ff1493;
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.6));
}

.social-icons a svg {
    transition: all 0.3s ease;
}

.social-icons a:hover svg {
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8));
}

.services-grid {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.stats-grid {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }


/* Enhanced section transitions */
section {
    position: relative;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #ff1493, #ff6b35);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Touch-friendly hover effects */
@media (hover: none) and (pointer: coarse) {
    .service-card:active {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    }
    
    .mission-box:active {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    }
    
    .team-card:active {
        transform: translateY(-15px) scale(1.01);
        box-shadow: 0 20px 50px rgba(255, 20, 147, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-grid {
        gap: 2rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        position: relative;
        flex-wrap: wrap;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        order: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        order: 2;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1.5rem;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(25px);
        padding: 2rem 1rem;
        border-radius: 20px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 20, 147, 0.3);
        box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
        position: relative;
        z-index: 999;
        order: 3;
        animation: slideInDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 20, 147, 0.1);
        transform: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 20, 147, 0.05);
        border: 1px solid rgba(255, 20, 147, 0.2);
        margin-top: 0.5rem;
        border-radius: 15px;
        box-shadow: inset 0 2px 10px rgba(255, 20, 147, 0.1);
    }
    
    .dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    .hero-section {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 2.4rem;
        padding: 0 1rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .mission-box {
        padding: 2.5rem 1.5rem;
    }
    
    .mission-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-card {
        padding: 2.5rem 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .main-content {
        margin-top: 100px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-video {
        filter: brightness(0.3) contrast(1.1) saturate(0.7);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-box {
        padding: 2rem 1.5rem;
    }
    
    .mission-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .image-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .image-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 1.2rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
        line-height: 1.2;
        margin: 0;
        padding: 0;
    }
    
    .social-icons a svg {
        width: 20px;
        height: 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before,
    .mission-section::before,
    .services-section::before,
    .approach-section::before,
    .contact-section::before {
        background-size: 50%;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

