:root {
    --primary: #2d3fe7;
    --secondary: #6d38e7;
    --accent: #38e7d3;
    --text: #2a2a2a;
    --bg: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo svg {
    width: 2rem;
    height: 2rem;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

/* ================================
   NAVBAR SECTION - SCOPED STYLES
   ================================ */

/* Navbar Wrapper */
.navbar-jayk-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.1);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-jayk-wrapper.navbar-jayk-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
}

/* Navbar Container */
.navbar-jayk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.navbar-jayk-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-jayk-logo:hover {
    transform: scale(1.02);
}

.navbar-jayk-icon {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.navbar-jayk-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.navbar-jayk-logo:hover .navbar-jayk-brand {
    background: linear-gradient(135deg, #3730a3, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Desktop Navigation Links */
.navbar-jayk-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-jayk-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.navbar-jayk-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-jayk-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-jayk-link:hover {
    color: #1e293b;
    transform: translateY(-1px);
}

.navbar-jayk-link:hover::before {
    width: 100%;
}

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

.navbar-jayk-link.navbar-jayk-active {
    color: #4f46e5;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
}

.navbar-jayk-link.navbar-jayk-active::after {
    width: 80%;
}

/* Mobile Hamburger Menu */
.navbar-jayk-hamburger {
    display: none;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-jayk-hamburger:hover {
    background: rgba(79, 70, 229, 0.1);
}

.navbar-jayk-hamburger-icon {
    width: 100%;
    height: 100%;
    color: #4f46e5;
}

.navbar-jayk-hamburger-line {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.navbar-jayk-hamburger.navbar-jayk-open .navbar-jayk-line-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-jayk-hamburger.navbar-jayk-open .navbar-jayk-line-2 {
    opacity: 0;
}

.navbar-jayk-hamburger.navbar-jayk-open .navbar-jayk-line-3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.navbar-jayk-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-jayk-mobile-menu.navbar-jayk-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-jayk-mobile-links {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.navbar-jayk-mobile-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-jayk-mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navbar-jayk-mobile-link:hover::before {
    left: 0;
}

.navbar-jayk-mobile-link:hover {
    color: #1e293b;
    transform: translateX(8px);
}

.navbar-jayk-mobile-link.navbar-jayk-active {
    color: #4f46e5;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
}

/* Animations */
@keyframes navbar-jayk-logo-draw {
    from {
        stroke-dashoffset: 280;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes navbar-jayk-logo-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background SVG Animations */
.hero-jayk-bg-blob {
    position: absolute;
    opacity: 0.1;
    animation: hero-blob-float 20s ease-in-out infinite;
}

.hero-jayk-bg-blob:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.hero-jayk-bg-blob:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 250px;
    height: 250px;
    animation-delay: -5s;
}

.hero-jayk-bg-blob:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    animation-delay: -10s;
}

.hero-jayk-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-jayk-particles circle {
    opacity: 0.6;
    animation: hero-particle-float 25s linear infinite;
}

.hero-jayk-particles circle:nth-child(odd) {
    animation-direction: reverse;
}

/* Services Section - Scoped Styles */
.services-jayk-wrapper {
    padding: 6rem 5% 5rem;
    background: linear-gradient(145deg, #0f0c29 0%, #24243e 50%, #302b63 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.services-jayk-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    animation: services-jayk-bg-float 20s ease-in-out infinite;
    z-index: 0;
}

.services-jayk-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23f8f9ff"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.services-jayk-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-jayk-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: services-jayk-fade-in-up 1s ease-out 0.2s forwards;
}

.services-jayk-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.services-jayk-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.services-jayk-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

.services-jayk-card.services-jayk-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

.services-jayk-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.services-jayk-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.services-jayk-card:hover .services-jayk-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.services-jayk-icon {
    width: 40px;
    height: 40px;
    fill: white;
    transition: all 0.3s ease;
}

.services-jayk-card:hover .services-jayk-icon {
    transform: scale(1.1);
}

.services-jayk-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.services-jayk-card:hover .services-jayk-card-title {
    color: #4ecdc4;
}

.services-jayk-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.services-jayk-card:hover .services-jayk-card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Decorative SVG Separator */
.services-jayk-separator {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.services-jayk-separator svg {
    width: 100%;
    height: 100%;
}

/* About Section - Enhanced Design */
.about-jayk-wrapper {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 25%, #fd79a8 50%, #e17055 75%, #00b894 100%);
    background-size: 400% 400%;
    animation: about-gradient-flow 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-jayk-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
}

.about-jayk-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.about-jayk-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-jayk-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-jayk-content.about-jayk-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-jayk-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-jayk-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-jayk-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.about-jayk-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.about-jayk-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.about-jayk-cta::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.6s;
}

.about-jayk-cta:hover::before {
    left: 100%;
}

.about-jayk-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.3);
}

.about-jayk-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.about-jayk-cta:hover svg {
    transform: translateX(3px);
}

.about-jayk-illustration {
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-jayk-illustration.about-jayk-visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.about-jayk-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Contact Section - Enhanced Design */
.contact-jayk-wrapper {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #667eea 50%, #764ba2 75%, #a8e6cf 100%);
    background-size: 400% 400%;
    animation: contact-gradient-flow 25s ease infinite;
    position: relative;
    overflow: hidden;
}

.contact-jayk-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 0;
}

.contact-jayk-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-jayk-visual {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-jayk-visual.contact-jayk-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-jayk-header {
    margin-bottom: 3rem;
}

.contact-jayk-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-jayk-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

.contact-jayk-info-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.contact-jayk-visual.contact-jayk-visible .contact-jayk-info-block {
    opacity: 1;
    transform: translateY(0);
}

.contact-jayk-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-jayk-info-item:last-child {
    margin-bottom: 0;
}

.contact-jayk-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-jayk-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    transition: all 0.3s ease;
}

.contact-jayk-info-item:hover .contact-jayk-info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-jayk-info-item:hover .contact-jayk-info-icon svg {
    transform: scale(1.1);
}

.contact-jayk-info-content {
    flex: 1;
}

.contact-jayk-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-jayk-info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-jayk-info-item:hover .contact-jayk-info-content h4 {
    color: #a8e6cf;
}

.contact-jayk-info-item:hover .contact-jayk-info-content p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-jayk-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-jayk-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.contact-jayk-form-section {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.contact-jayk-form-section.contact-jayk-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-jayk-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-jayk-field {
    position: relative;
    margin-bottom: 2rem;
}

.contact-jayk-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-jayk-input::placeholder {
    color: transparent;
}

.contact-jayk-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-jayk-label {
    position: absolute;
    left: 1.5rem;
    top: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.contact-jayk-input:focus + .contact-jayk-label,
.contact-jayk-input:valid + .contact-jayk-label {
    transform: translateY(-2.8rem) scale(0.85);
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-jayk-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.contact-jayk-input:focus ~ .contact-jayk-focus-line {
    width: 100%;
}

.contact-jayk-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-jayk-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-jayk-submit::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.6s;
}

.contact-jayk-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.contact-jayk-submit:active {
    transform: translateY(-1px);
}

.contact-jayk-submit-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-jayk-submit:hover .contact-jayk-submit-icon {
    transform: translateX(5px);
}

.contact-jayk-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(168, 230, 207, 0.2);
    border: 2px solid rgba(168, 230, 207, 0.4);
    border-radius: 12px;
    color: white;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-jayk-success.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.contact-jayk-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    fill: #a8e6cf;
    animation: contact-success-bounce 0.6s ease-out;
}

.contact-jayk-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #a8e6cf;
}

.contact-jayk-success p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact {
    padding: 5rem 5%;
    background: #f8f9ff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: #f8f9ff;
    padding: 0 0.5rem;
    color: #666;
    transition: transform 0.3s, color 0.3s;
}

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

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem) scale(0.8);
    color: var(--primary);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

footer {
    padding: 3rem 5%;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
    transition: transform 0.3s;
}

.social-links a:hover svg {
    transform: translateY(-3px);
}

/* =================================
   DESIGNER HERO SECTION STYLES
   ================================= */

.hero-designer-jayk {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Background Gradients */
.hero-designer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-designer-gradient-1,
.hero-designer-gradient-2,
.hero-designer-gradient-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: float 20s ease-in-out infinite;
}

.hero-designer-gradient-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-designer-gradient-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.5), transparent);
    top: 40%;
    right: -5%;
    animation-delay: -7s;
}

.hero-designer-gradient-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

/* Floating Elements */
.hero-designer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-designer-float-1,
.hero-designer-float-2,
.hero-designer-float-3,
.hero-designer-float-4 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-designer-float-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-designer-float-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.hero-designer-float-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
}

.hero-designer-float-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

/* Main Container */
.hero-designer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-designer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Content Styles */
.hero-designer-content {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.5s forwards;
}

.hero-designer-badge {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-designer-badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-designer-badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-designer-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-designer-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-designer-title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-designer-title-line:nth-child(2) { animation-delay: 0.9s; }
.hero-designer-title-line:nth-child(3) { animation-delay: 1.1s; }

.hero-designer-title-gradient {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-designer-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 1.3s forwards;
}

/* Action Buttons */
.hero-designer-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 1.5s forwards;
}

.hero-designer-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-designer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.hero-designer-btn-primary::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 ease;
}

.hero-designer-btn-primary:hover::before {
    left: 100%;
}

.hero-designer-btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-designer-btn-primary:hover .hero-designer-btn-arrow {
    transform: translateX(5px);
}

.hero-designer-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-designer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-designer-play-icon {
    width: 16px;
    height: 16px;
}

/* Stats */
.hero-designer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 1.7s forwards;
}

.hero-designer-stat {
    text-align: center;
}

.hero-designer-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-designer-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Section */
.hero-designer-visual {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 0.8s forwards;
}

.hero-designer-3d-container {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Main 3D Shape */
.hero-designer-shape-main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg);
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

.hero-designer-shape-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.hero-designer-face-1 {
    transform: translateZ(100px);
}

.hero-designer-face-2 {
    transform: rotateY(90deg) translateZ(100px);
}

.hero-designer-face-3 {
    transform: rotateY(180deg) translateZ(100px);
}

/* Orbiting Elements */
.hero-designer-orbit-1,
.hero-designer-orbit-2,
.hero-designer-orbit-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-designer-orbit-1 {
    animation: orbit 15s linear infinite;
}

.hero-designer-orbit-2 {
    animation: orbit 20s linear infinite reverse;
}

.hero-designer-orbit-3 {
    animation: orbit 25s linear infinite;
}

.hero-designer-orbit-element {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* Floating Cards */
.hero-designer-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.hero-designer-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-designer-card-2 {
    top: 60%;
    left: 0%;
    animation-delay: -2s;
}

.hero-designer-card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: -4s;
}

.hero-designer-card-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.hero-designer-card-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Scroll Indicator */
.hero-designer-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.hero-designer-scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-designer-scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-designer-scroll-arrow {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes rotate3d {
    0% {
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(45deg) rotateZ(360deg);
    }
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-designer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-designer-title {
        font-size: 3rem;
    }
    
    .hero-designer-3d-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-designer-container {
        padding: 0 1.5rem;
    }
    
    .hero-designer-title {
        font-size: 2.5rem;
    }
    
    .hero-designer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-designer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-designer-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-designer-title {
        font-size: 2rem;
    }
    
    .hero-designer-subtitle {
        font-size: 1rem;
    }
    
    .hero-designer-btn-primary,
    .hero-designer-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}