/* Premier Corporate Massage - Elegant Redesign */

:root {
    /* Core Brand Colors */
    --premier-blue: #bbd4e2;
    --premier-dark: #152134;
    
    /* Extended Palette */
    --blue-50: rgba(187, 212, 226, 0.05);
    --blue-100: rgba(187, 212, 226, 0.1);
    --blue-200: rgba(187, 212, 226, 0.2);
    --blue-300: rgba(187, 212, 226, 0.3);
    --blue-500: rgba(187, 212, 226, 0.5);
    --blue-700: rgba(187, 212, 226, 0.7);
    
    --dark-50: rgba(21, 33, 52, 0.05);
    --dark-100: rgba(21, 33, 52, 0.1);
    --dark-300: rgba(21, 33, 52, 0.3);
    --dark-500: rgba(21, 33, 52, 0.5);
    --dark-700: rgba(21, 33, 52, 0.7);
    --dark-900: rgba(21, 33, 52, 0.9);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--premier-dark);
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating Navigation */
.navbar-elegant {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.5s var(--ease-out);
}

.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--blue-100);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
}

.nav-logo-elegant {
    height: 45px;
    transition: transform 0.3s var(--ease-out);
}

.nav-logo-elegant:hover {
    transform: scale(1.05);
}

.nav-center {
    text-align: center;
}

.nav-menu-elegant {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
}

.nav-link-elegant {
    color: var(--premier-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--premier-blue);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-out);
}

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

.nav-action {
    text-align: right;
}

.nav-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--premier-dark);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--premier-blue);
    transition: left 0.3s var(--ease-out);
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    justify-self: end;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--premier-dark);
    transition: all 0.3s ease;
}

/* Cinematic Hero */
.hero-elegant {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroScale 20s ease-in-out infinite alternate;
}

@keyframes heroScale {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(21, 33, 52, 0.8) 0%,
        rgba(21, 33, 52, 0.5) 40%,
        rgba(187, 212, 226, 0.3) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.hero-inner {
    animation: fadeInUp 1.2s var(--ease-out);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--premier-blue);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.9;
    color: white;
    margin-bottom: 2rem;
}

.hero-line {
    display: block;
    animation: heroText 1.5s var(--ease-out) backwards;
}

.hero-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-line.accent {
    color: var(--premier-blue);
}

@keyframes heroText {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-premium.primary {
    background: var(--premier-blue);
    color: var(--premier-dark);
}

.btn-premium.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(187, 212, 226, 0.4);
}

.btn-premium.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-premium.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-premium svg {
    transition: transform 0.3s ease;
}

.btn-premium:hover svg {
    transform: translateX(5px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--premier-blue);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    to {
        top: 40px;
    }
}

/* Services Showcase */
.services-elegant {
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        var(--blue-50) 100%
    );
}

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

.section-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--premier-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--premier-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--premier-blue), var(--premier-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.service-feature.reverse {
    direction: rtl;
}

.service-feature.reverse .service-details {
    direction: ltr;
}

.service-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s var(--ease-out);
}

.service-visual:hover {
    transform: scale(1.02) rotate(1deg);
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-details {
    padding: 0 2rem;
}

.service-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--premier-dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(21, 33, 52, 0.7);
    margin-bottom: 2rem;
}

.service-arrow {
    display: inline-block;
    font-size: 2rem;
    color: var(--premier-blue);
    transition: transform 0.3s ease;
}

.service-feature:hover .service-arrow {
    transform: translateX(10px);
}

/* About Split Section */
.about-elegant {
    padding: var(--space-3xl) 0;
    background: var(--premier-dark);
    color: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-tag.light {
    color: var(--premier-blue);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-prose p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.about-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.about-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.frame-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--premier-blue);
    border-radius: 20px;
    pointer-events: none;
}

/* Founder Spotlight */
.founder-elegant {
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        var(--blue-50) 100%
    );
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center;
}

.portrait-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.portrait-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portrait-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--premier-blue);
    border-radius: 20px;
    z-index: -1;
}

.founder-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--premier-dark);
    margin-bottom: 2rem;
}

.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(21, 33, 52, 0.7);
    margin-bottom: 1.5rem;
}

/* Philosophy Statement */
.philosophy-elegant {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.philosophy-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(21, 33, 52, 0.9) 0%,
        rgba(187, 212, 226, 0.7) 100%
    );
}

.philosophy-stage {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 3rem;
}

.section-tag.white {
    color: var(--premier-blue);
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
}

.philosophy-statement {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--premier-blue);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: -3rem;
    color: rgba(187, 212, 226, 0.3);
}

.quote-mark.end {
    top: auto;
    left: auto;
    bottom: -2rem;
    right: -3rem;
}

/* Careers Invitation */
.careers-elegant {
    padding: 0;
    background: white;
}

.careers-composition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.careers-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl);
}

.careers-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--premier-dark);
    margin-bottom: 1.5rem;
}

.careers-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(21, 33, 52, 0.7);
    margin-bottom: 3rem;
}

.btn-premium.dark {
    background: var(--premier-dark);
    color: white;
}

.btn-premium.dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(21, 33, 52, 0.3);
}

.visual-container {
    position: relative;
    height: 100%;
}

.visual-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 30%
    );
}

/* Contact Experience */
.contact-elegant {
    padding: var(--space-3xl) 0;
    background: linear-gradient(
        135deg,
        var(--premier-dark) 0%,
        rgba(21, 33, 52, 0.9) 100%
    );
}

.contact-canvas {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-elegant {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--premier-blue);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--premier-blue);
    transition: width 0.3s ease;
}

.form-group input:focus + .form-line {
    width: 100%;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--premier-blue);
    color: var(--premier-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(187, 212, 226, 0.3);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Team Gallery Styles */
.team-gallery-elegant {
    padding: var(--space-2xl) 0;
    background: white;
}

.gallery-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--space-xl);
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(21, 33, 52, 0.15);
}

.photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--blue-100);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(21, 33, 52, 0.7) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .photo-overlay {
    opacity: 1;
}

/* Application Form Styles */
.application-elegant {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, white 100%);
}

.application-layout {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.form-elegant-wrapper {
    margin-top: var(--space-xl);
    background: white;
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(21, 33, 52, 0.08);
    border: 1px solid var(--blue-100);
}

.application-form {
    max-width: 100%;
}

.form-section-elegant {
    margin-bottom: var(--space-xl);
    text-align: left;
}

.form-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--premier-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-100);
}

.license-group-elegant {
    margin-bottom: 2rem;
}

.license-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--premier-dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.form-grid .form-group.span-2 {
    grid-column: span 2;
}

/* Fix form inputs for application form */
.application-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.application-form .form-group input,
.application-form .form-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid var(--blue-200);
    background: transparent;
    font-size: 1rem;
    color: var(--premier-dark);
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.application-form .form-group input:focus,
.application-form .form-group textarea:focus {
    border-bottom-color: var(--premier-blue);
}

.application-form .form-group input::placeholder,
.application-form .form-group textarea::placeholder {
    color: rgba(21, 33, 52, 0.5);
    font-size: 1rem;
}

.application-form .form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--premier-blue);
    transition: width 0.3s ease;
}

.application-form .form-group input:focus + .form-line,
.application-form .form-group textarea:focus + .form-line {
    width: 100%;
}

.file-upload-elegant {
    margin-top: 1rem;
}

.file-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border: 2px dashed var(--blue-200);
    border-radius: 16px;
    background: var(--blue-50);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-area:hover {
    border-color: var(--premier-blue);
    background: rgba(187, 212, 226, 0.1);
    transform: translateY(-2px);
}

.upload-icon {
    color: var(--premier-blue);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--premier-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.upload-note {
    font-size: 0.9rem;
    color: rgba(21, 33, 52, 0.6);
}

.file-input {
    display: none;
}

.application-submit {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--premier-blue) 0%, #a8c5d4 100%);
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.application-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(187, 212, 226, 0.4);
}

/* Contact Section Styles */
.contact-main-elegant {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, white 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info-elegant {
    padding: var(--space-xl) 0;
}

.contact-content {
    text-align: left;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(21, 33, 52, 0.8);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(21, 33, 52, 0.05);
    border: 1px solid var(--blue-100);
}

.method-icon {
    color: var(--premier-blue);
    padding: 0.75rem;
    background: var(--blue-50);
    border-radius: 12px;
}

.method-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--premier-dark);
    margin-bottom: 0.25rem;
}

.method-text {
    font-size: 0.95rem;
    color: rgba(21, 33, 52, 0.7);
    margin: 0;
}

.contact-form-elegant {
    display: flex;
    align-items: stretch;
}

.contact-form-elegant .form-elegant-wrapper {
    width: 100%;
    margin-top: 0;
}

.contact-form {
    max-width: 100%;
}

.contact-submit {
    background: linear-gradient(135deg, var(--premier-blue) 0%, #a8c5d4 100%);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(187, 212, 226, 0.4);
}

/* Contact form input fixes */
.contact-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    border: none;
    border-bottom: 2px solid var(--blue-200);
    background: transparent;
    font-size: 1rem;
    color: var(--premier-dark);
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    resize: vertical;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-bottom-color: var(--premier-blue);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(21, 33, 52, 0.5);
    font-size: 1rem;
}

.contact-form .form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--premier-blue);
    transition: width 0.3s ease;
}

.contact-form .form-group input:focus + .form-line,
.contact-form .form-group textarea:focus + .form-line {
    width: 100%;
}

/* CTA Section Styles */
.cta-elegant {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, white 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--premier-dark);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(21, 33, 52, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Minimal Footer */
.footer-elegant {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--blue-100);
}

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

.footer-logo {
    height: 50px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(21, 33, 52, 0.6);
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--premier-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Ensure navigation wrapper has proper positioning */
.navbar-elegant {
    position: relative;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-wrapper {
        grid-template-columns: auto 1fr auto;
    }
    
    .nav-center {
        text-align: left;
        margin-left: 2rem;
    }
    
    .service-feature,
    .service-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-visual {
        margin-bottom: 2rem;
    }
    
    .about-split,
    .founder-layout,
    .careers-composition {
        grid-template-columns: 1fr;
    }
    
    .careers-message {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(187, 212, 226, 0.1));
    backdrop-filter: blur(30px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(21, 33, 52, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--premier-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(21, 33, 52, 0.2);
}

.mobile-menu-close span {
    width: 20px;
    height: 2px;
    background: var(--premier-dark);
    border-radius: 1px;
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover span {
    background: white;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.mobile-menu-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(187, 212, 226, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mobile-menu-items li {
    margin: 2rem 0;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu-items li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-items li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-items li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-items li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-items li:nth-child(5) { animation-delay: 0.5s; }

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

.mobile-nav-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--premier-dark);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(187, 212, 226, 0.3);
    box-shadow: 0 8px 32px rgba(21, 33, 52, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 212, 226, 0.4), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: var(--premier-blue);
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(21, 33, 52, 0.2);
    border-color: var(--premier-blue);
}

.mobile-nav-link:active {
    transform: translateY(-4px) scale(1.02);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-menu-elegant {
        display: none;
    }
    
    .nav-action {
        display: none;
    }
    
    /* Mobile contact layout */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-info-elegant {
        padding: var(--space-lg) 0;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .container-elegant {
        padding: 0 1.5rem;
    }
    
    .section-heading {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid .form-group.span-2 {
        grid-column: span 1;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .gallery-grid-elegant {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
}

/* Legacy mobile styles cleanup */
@media (max-width: 768px) {
    .nav-wrapper-old {
        grid-template-columns: auto auto;
        padding: 1rem 1.5rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-action {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section-heading {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .container-elegant,
    .about-container,
    .contact-canvas {
        padding: 0 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

/* Loading State */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10000;
    animation: fadeOut 0.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}