@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Black.eot");
    src: local("☺"), url("fonts/Montserrat-Black.woff") format("woff"), url("fonts/Montserrat-Black.ttf") format("truetype"), url("fonts/Montserrat-Black.svg") format("svg");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Bold.eot");
    src: local("☺"), url("fonts/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat-Bold.ttf") format("truetype"), url("fonts/Montserrat-Bold.svg") format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Regular.eot");
    src: local("☺"), url("fonts/Montserrat-Regular.woff") format("woff"), url("fonts/Montserrat-Regular.ttf") format("truetype"), url("fonts/Montserrat-Regular.svg") format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Light.eot");
    src: local("☺"), url("fonts/Montserrat-Light.woff") format("woff"), url("fonts/Montserrat-Light.ttf") format("truetype"), url("fonts/Montserrat-Light.svg") format("svg");
    font-weight: 300;
    font-style: normal;
}

/* Add these at the top of the file, after @font-face declarations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    color: #f0f4ff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.4) 0%, rgba(255, 107, 129, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 213, 197, 0.4) 0%, rgba(46, 213, 197, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Fix flexbox issues for Safari */
.l-viewport {
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #1a1a1a;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.l-wrapper {
    position: relative;
    width: 1440px;
    max-width: 90%;
    height: 100%;
    margin: 0 auto;
}



.l-main-content {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #1a1a1a;
    border: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.l-section {
    position: absolute;
    width: 100%;
    height: 100%;
}

.device-notification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: -webkit-fill-available; /* iOS viewport fix */
    height: fill-available;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5614b0 0%, #1976d2 100%);
    z-index: 12;
    backdrop-filter: blur(10px);
}

.device-notification--logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.device-notification--logo p {
    margin: 0 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.device-notification--message {
    width: 70%;
    margin: 30px 0 0 0;
    font-weight: 700;
    text-align: center;
}

/* Device notification display conditions */
@media (max-width: 767px) and (min-width: 601px) and (max-height: 680px),
       (max-width: 600px) and (min-width: 480px) and (max-height: 580px),
       (max-width: 736px) and (min-width: 360px) and (orientation: landscape),
       (max-width: 359px) {
    .device-notification {
        display: flex;
    }
}

.section {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    background: #1a1a1a;
    color: #f0f4ff;
    margin: 0;
    padding: 0;
    transform: none;
    border: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section--is-active {
    opacity: 1;
    visibility: visible;
    background: #1a1a1a;
    color: #f0f4ff;
    transform: none;
    border: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section--next {
    position: relative;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.section--prev {
    position: relative;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 70px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(86, 20, 176, 0.1);
}

.header--logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    transition: transform 0.3s ease;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

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

.header--logo p {
    margin: 0 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #5614b0, #1976d2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(86, 20, 176, 0.2);
}

.header--nav-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.header--nav-toggle.burger-menu span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header--nav-toggle.burger-menu span:nth-child(1) {
    top: 15px;
}

.header--nav-toggle.burger-menu span:nth-child(2) {
    top: 25px;
}

.header--nav-toggle.burger-menu span:nth-child(3) {
    top: 35px;
}

.header--nav-toggle::before {
    bottom: 5px;
    width: 23px;
}

.header--nav-toggle::after {
    top: 5px;
    width: 23px;
}

.perspective--modalview .header--nav-toggle.burger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.perspective--modalview .header--nav-toggle.burger-menu span:nth-child(2) {
    opacity: 0;
}

.perspective--modalview .header--nav-toggle.burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header--cta {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 20px;
    line-height: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5614b0 0%, #1976d2 100%);
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(86, 20, 176, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out, visibility 0s .4s;
    transition: all .4s ease-in-out, visibility 0s .4s;
}

.header--cta:focus {
    outline: none;
}

.header--cta:hover {
    transform: translate(-50%, -53%);
    box-shadow: 0 8px 20px rgba(86, 20, 176, 0.4);
}

.header--cta.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .4s ease-in-out .4s;
    transition: opacity .4s ease-in-out .4s;
}
@media (max-width: 767px) {
    .header--cta {
        display: none;
    }
}

.side-nav {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 70%;
    max-height: 750px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style-position: inside;
    z-index: 10;
}

.side-nav > li {
    position: relative;
    top: -5px;
    color: #2c3e50;
    font-size: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-nav > li span {
    position: relative;
    top: 3px;
    left: 10px;
    color: #5614b0;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    text-shadow: 0 2px 10px rgba(86, 20, 176, 0.2);
}

.side-nav > li::before {
    position: absolute;
    top: 3px;
    left: 10px;
    color: #1976d2;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(90deg, #5614b0, #1976d2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.side-nav li:nth-child(1)::before {
    content: "01";
}

.side-nav li:nth-child(2)::before {
    content: "02";
}

.side-nav li:nth-child(3)::before {
    content: "03";
}

.side-nav li:nth-child(4)::before {
    content: "04";
}

.side-nav li:nth-child(5)::before {
    content: "05";
}

.side-nav li.is-active {
    color: #5614b0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    transform: scale(1.1);
}

.side-nav li.is-active span {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

.side-nav li.is-active::before {
    left: -33px;
    color: #fff;
    text-shadow: 0 0 10px rgba(86, 20, 176, 0.5);
}

.intro {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
    max-width: 75%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1180px) {
    .intro {
        max-width: 100%;
    }
}

.intro--banner {
    position: relative;
    height: 475px;
}

.intro--banner::before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: -15px;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(86, 20, 176, 0.2), rgba(25, 118, 210, 0.8));
    border-radius: 3px;
}

.intro--banner::after {
    content: "";
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 50px;
    height: 5px;
    background: linear-gradient(90deg, #5614b0, #1976d2);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(86, 20, 176, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(86, 20, 176, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(86, 20, 176, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(86, 20, 176, 0.5);
    }
}

.intro--banner h1 {
    position: relative;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    color: #2c3e50;
    background: linear-gradient(90deg, #5614b0, #1976d2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 30px rgba(86, 20, 176, 0.3);
}

.section--is-active .intro--banner h1 {
    opacity: 1;
    transform: translateX(0);
}

.intro--banner button {
    position: relative;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5614b0 0%, #1976d2 100%);
    border: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 20px rgba(86, 20, 176, 0.4),
        0 0 20px rgba(15, 51, 255, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro--banner button .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #00ff88 0%, #2952ff 100%);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.9;
}

.intro--banner button:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(15, 51, 255, 0.4),
        0 0 30px rgba(15, 51, 255, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.intro--banner button:hover .btn-background {
    width: 100%;
}

.intro--banner button svg {
    position: relative;
    left: 5px;
    width: 16px;
    fill: #fff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro--banner button:hover svg {
    transform: translateX(5px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Add pulse animation */
@keyframes buttonPulse {
    0% {
        box-shadow: 
            0 4px 15px rgba(15, 51, 255, 0.3),
            0 0 20px rgba(15, 51, 255, 0.2),
            inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(15, 51, 255, 0.4),
            0 0 30px rgba(15, 51, 255, 0.3),
            inset 0 0 15px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(15, 51, 255, 0.3),
            0 0 20px rgba(15, 51, 255, 0.2),
            inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

.intro--banner button {
    animation: buttonPulse 3s infinite;
}

/* Active state */
.intro--banner button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(15, 51, 255, 0.3),
        0 0 15px rgba(15, 51, 255, 0.2),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
}

.intro--banner img {
    position: absolute;
    bottom: 21px;
    right: -12px;
}

.intro--options {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    gap: 40px;
}

.intro--options > a {
    flex: 1;
    max-width: 280px;
    text-decoration: none;
    position: relative;
    background: linear-gradient(135deg, rgba(25, 64, 255, 0.03) 0%, rgba(15, 51, 255, 0.07) 100%);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(15, 51, 255, 0.05);
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(5px);
}

.section--is-active .intro--options > a {
    opacity: 1;
    transform: translateY(0);
}

.section--is-active .intro--options > a:nth-child(1) {
    transition-delay: 0.1s;
}

.section--is-active .intro--options > a:nth-child(2) {
    transition-delay: 0.2s;
}

.section--is-active .intro--options > a:nth-child(3) {
    transition-delay: 0.3s;
}

.intro--options > a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(25, 64, 255, 0.07) 0%, rgba(15, 51, 255, 0.12) 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(15, 51, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.intro--options > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1940ff, #0f33ff);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0 0 2px 2px;
    opacity: 0.7;
}

.intro--options > a:hover::before {
    width: 70%;
}

.intro--options h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.intro--options p {
    margin-bottom: 0;
    line-height: 1.7;
    color: #b3b3b3;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.intro--options > a:hover h3 {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.intro--options > a:hover p {
    color: #e6e6e6;
}

@media (max-width: 900px) {
    .intro--options {
        padding: 0 10px;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .intro--options {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
    }

    .intro--options > a {
        width: 100%;
        max-width: 300px;
    }
}

.work {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 960px;
    max-width: 80%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    background: #1a1a1a url('assets/img/drone-pattern.png') repeat;
    color: #f0f4ff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.6) 0%, rgba(255, 107, 129, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.work::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 213, 197, 0.6) 0%, rgba(46, 213, 197, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 1180px) {
    .work {
        max-width: 100%;
    }
}

.work h2 {
    margin: 0 0 40px 0;
    font-size: 32px;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.work h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b81, #2ed5c5);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 107, 129, 0.5);
}

.work--lockup {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    z-index: 1;
    perspective: 1000px;
}

.work--lockup .slider {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    height: 400px;
    display: flex;
    align-items: center;
}

.work--lockup .slider--item {
    position: absolute;
    display: block;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.work--lockup .slider--item-left,
.work--lockup .slider--item-right {
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.5;
}

.work--lockup .slider--item-left {
    left: 0;
}

.work--lockup .slider--item-right {
    right: 0;
}

.work--lockup .slider--item-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 1;
    opacity: 1;
}

.work--lockup .slider--item-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.work--lockup .slider--item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.work--lockup .slider--item-image:hover {
    transform: translateY(-8px) rotateY(10deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        0 0 0 10px rgba(255, 255, 255, 0.05);
}

.work--lockup .slider--item-center .slider--item-image {
    width: 300px;
    height: 300px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 107, 129, 0.3),
        0 0 30px rgba(46, 213, 197, 0.3);
    animation: pulse 3s infinite alternate;
}

.work--lockup .slider--item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work--lockup .slider--item-title,
.work--lockup .slider--item-description {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.work--lockup .slider--item-title {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    color: #fff;
    transition: all 0.3s ease;
}

.work--lockup .slider--item:hover .slider--item-title {
    background: rgba(255, 107, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.work--lockup .slider--item-center .slider--item-title {
    margin-top: 25px;
    font-size: 16px;
}

.work--lockup .slider--item-description {
    display: none;
    max-width: 280px;
    margin: 15px auto 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 
        inset 0 2px 5px rgba(86, 20, 176, 0.05),
        0 5px 15px rgba(86, 20, 176, 0.1);
    border: 1px solid rgba(86, 20, 176, 0.1);
    line-height: 1.6;
    color: #2c3e50;
    font-size: 14px;
    backdrop-filter: blur(5px);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work--lockup .slider--item-center .slider--item-description {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.work--lockup .slider--item a {
    text-decoration: none;
    color: #858585;
}

.work--lockup .slider--item.is-sliding {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pulse {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(255, 107, 129, 0.3),
            0 0 20px rgba(46, 213, 197, 0.2);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 0 0 4px rgba(255, 107, 129, 0.4),
            0 0 40px rgba(46, 213, 197, 0.4);
    }
}

/* Animation classes for slider transitions */
.slider--item-left.slide-out {
    animation: slideOutLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slider--item-right.slide-out {
    animation: slideOutRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slider--item-center.slide-out {
    animation: slideOutCenter 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slider--item-left.slide-in {
    animation: slideInLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slider--item-right.slide-in {
    animation: slideInRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slider--item-center.slide-in {
    animation: slideInCenter 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideOutLeft {
    0% {
        opacity: 0.5;
        transform: translateY(-50%) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px) scale(0.5) rotateY(-30deg);
    }
}

@keyframes slideOutRight {
    0% {
        opacity: 0.5;
        transform: translateY(-50%) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(100px) scale(0.5) rotateY(30deg);
    }
}

@keyframes slideOutCenter {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(45deg);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px) scale(0.5) rotateY(-30deg);
    }
    100% {
        opacity: 0.5;
        transform: translateY(-50%) translateX(0) scale(1) rotateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(100px) scale(0.5) rotateY(30deg);
    }
    100% {
        opacity: 0.5;
        transform: translateY(-50%) translateX(0) scale(1) rotateY(0);
    }
}

@keyframes slideInCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(-45deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0);
    }
}

.work--lockup .slider--next,
.work--lockup .slider--prev {
    position: absolute;
    top: 160px;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 129, 0.8) 0%, rgba(46, 213, 197, 0.8) 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.work--lockup .slider--next:hover,
.work--lockup .slider--prev:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.work--lockup .slider--next svg,
.work--lockup .slider--prev svg {
    width: 20px;
    fill: #fff;
}

.work--lockup .slider--next {
    right: 0;
}

.work--lockup .slider--prev {
    left: 0;
}

.section--is-active .work--lockup .slider--item-center {
    opacity: 1;
    z-index: 3;
}

@media (max-width: 900px) {
    .work {
        padding: 20px;
    }
    .work--lockup .slider--item-image {
        width: 120px;
        height: 120px;
    }
    .work--lockup .slider--item-center .slider--item-image {
        width: 240px;
        height: 240px;
    }
    .work--lockup .slider--next,
    .work--lockup .slider--prev {
        top: 130px;
    }
}

@media (max-width: 767px) {
    .work--lockup .slider {
        width: 75%;
    }
    .work--lockup .slider--item-image {
        width: 90px;
        height: 90px;
    }
    .work--lockup .slider--item-center .slider--item-image {
        width: 190px;
        height: 190px;
    }
    .work--lockup .slider--next,
    .work--lockup .slider--prev {
        top: 105px;
    }
}

@media (max-width: 600px) {
    .work--lockup .slider {
        width: auto;
    }
    .work--lockup .slider--item-left,
    .work--lockup .slider--item-right {
        display: none;
    }
}

.about {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
    max-width: 75%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    background: transparent;
}

@media (max-width: 1180px) {
    .about {
        max-width: 100%;
    }
}

.about--banner {
    position: relative;
    height: 475px;
    display: flex;
    align-items: center;
}

.about--banner::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 200px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    border: 5px solid #1940ff;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.about--banner::after {
    content: "";
    position: absolute;
    top: 75px;
    left: 400px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #1940ff;
}

.about--banner h2 {
    position: relative;
    margin: 0;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    flex: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.section--is-active .about--banner h2 {
    opacity: 1;
    transform: translateY(0);
}

.about--banner h2::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 268px;
    width: 30px;
    height: 30px;
    background-color: #1940ff;
    border-radius: 50%;
}

.about--banner h2::after {
    content: "";
    position: absolute;
    top: 255px;
    left: 255px;
    width: 10px;
    height: 10px;
    background-color: #1940ff;
}

.about--banner a {
    padding: 5px 17px 5px 0;
    text-decoration: none;
    color: #5614b0;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
}

.about--banner a:hover svg {
    left: 10px;
}

.about--banner a svg {
    position: relative;
    left: 5px;
    width: 15px;
    fill: #fff;
    -webkit-transition: left .2s ease-in-out;
    transition: left .2s ease-in-out;
}

.about--banner img {
    position: relative;
    right: -12px;
    max-height: 90%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.section--is-active .about--banner img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.about--options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 600px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about--options > a {
    position: relative;
    width: 150px;
    height: 75px;
    text-decoration: none;
    color: #fff;
    border: 10px solid #1940ff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about--options > a:nth-child(1) {
    background-image: url("../img/about-winners.jpg");
}

.about--options > a:nth-child(2) {
    background-image: url("../img/about-philosophy.jpg");
}

.about--options > a:nth-child(3) {
    background-image: url("../img/about-history.jpg");
}

.about--options > a:hover h3 {
    bottom: -50px;
}

.about--options h3 {
    position: absolute;
    bottom: -38px;
    left: 10px;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: bottom .2s ease-in-out, left .2s ease-in-out;
    transition: bottom .2s ease-in-out, left .2s ease-in-out;
}
@media (max-width: 767px) {
    .about--banner {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    .about--banner h2 {
        margin-bottom: 30px;
        font-size: 44px;
    }
    .about--banner img {
        position: relative;
        right: 0;
        max-width: 80%;
        margin: 0 auto;
    }
    .about--banner::before {
        display: none;
    }
    .about--banner::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .about--banner {
        padding: 30px 0;
    }
    .about--banner h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .about--banner img {
        max-width: 90%;
        display: block;
    }
    .about--options {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .about--options > a {
        margin-bottom: 20px;
        width: 80%;
    }
}

.contact {
    position: relative;
    padding: 0;
    margin: 0;
    background: #1a1a1a;
    color: #f0f4ff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact--lockup {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal--information {
    margin-bottom: 30px;
}

.modal--information p {
    font-size: 20px;
    margin-bottom: 10px;
}

.modal--information a {
    display: block;
    color: #4d9fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.modal--information a:hover {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal--options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal--options a {
    padding: 12px 25px;
    background: linear-gradient(135deg, #1940ff 0%, #0f33ff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modal--options a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 51, 255, 0.3);
}

.hire {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.under-construction-panel {
    background-color: #ffcc00; /* Distinct color */
    border: 2px solid #ff9900;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 300px;
}

.under-construction-panel p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.under-construction-panel a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.under-construction-panel a:hover {
    background-color: #f0f0f0;
}

.work-request {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.work-request input[type="submit"] {
    width: 400px;
    max-width: 100%;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #0f33ff;
    border: none;
    border-radius: 0;
}

.work-request input[type="submit"]:focus {
    outline: none;
}

.work-request--options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
}

.work-request--options label {
    display: block;
    width: 100%;
    margin: 0;
    line-height: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
    background-color: transparent;
}

.work-request--options label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

.work-request--options label:hover::before {
    left: 100%;
}

.work-request--options label:hover {
    color: #0f33ff;
    background-color: #fff;
    transform: translateY(-3px);
}

.work-request--options input[type="checkbox"] {
    display: none;
}

.work-request--options input[type="checkbox"]:checked + label {
    background-color: #0f33ff;
    border-color: #0f33ff;
    color: #fff;
}

.work-request--options label:active {
    transform: scale(0.95);
}

.work-request input[type="submit"] {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    background: linear-gradient(135deg, #1940ff 0%, #0f33ff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 51, 255, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.work-request input[type="submit"]:hover {
    background: linear-gradient(135deg, #0f33ff 0%, #1940ff 100%);
    box-shadow: 0 6px 20px rgba(15, 51, 255, 0.3);
}

.work-request input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(15, 51, 255, 0.5);
}

/* Remove the SVG styles that were causing the arrow */
.work-request--options label svg {
    display: none;
}

/* Adjust for tablets */
@media (max-width: 900px) {
    .work-request--options {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        padding: 0 20px;
    }
}

/* Adjust for mobile */
@media (max-width: 600px) {
    .work-request--options {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.work-request--information {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    gap: 30px;
}

.information-name,
.information-email,
.information-message {
    position: relative;
    width: 100%;
}

.work-request--information input,
.work-request--information textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.work-request--information input:focus,
.work-request--information textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(25, 64, 255, 0.5);
    box-shadow: 0 0 15px rgba(25, 64, 255, 0.1);
}

.work-request--information label {
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 0 5px;
    background: #0c0c0c;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.work-request input[type="submit"] {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    background: linear-gradient(135deg, #1940ff 0%, #0f33ff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 51, 255, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.work-request input[type="submit"]:hover {
    background: linear-gradient(135deg, #0f33ff 0%, #1940ff 100%);
    box-shadow: 0 6px 20px rgba(15, 51, 255, 0.3);
}

.work-request input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(15, 51, 255, 0.5);
}

@media (max-width: 768px) {
    .work-request--options {
        grid-template-columns: 1fr;
    }
    
    .work-request--options label {
        max-width: 100%;
    }
}

.perspective {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #1a1a1a;
    -webkit-perspective: 1500px;
    perspective: 1500px;
    margin: 0;
    padding: 0;
}

.perspective--modalview {
    position: fixed;
}

.container {
    position: relative;
    transform: none;
    min-height: 100%;
    outline: none;
    transition: none;
    background: #1a1a1a;
    margin: 0;
    padding: 0;
}

.effect-rotate-left .container {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    outline: none;
}

.effect-rotate-left--animate .container {
    transform: translateZ(-1800px) translateX(-50%) rotateY(45deg);
    outline: none;
    background: #0c0c0c;  /* Match site background */
}

.modalview .container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #0c0c0c;  /* Match site background */
}

.outer-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    z-index: 10;
}

/* Menu items with consistent styling */
.outer-nav li {
    position: relative;
    display: block;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    cursor: pointer;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    z-index: 11;
    text-align: center;
}

.outer-nav li a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

/* Hover effect matching site style */
.outer-nav li:hover,
.outer-nav li a:hover {
    color: #fff;
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Active menu item */
.outer-nav li.is-active {
    color: #fff;
    font-size: 55px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Show menu when active */
.perspective--modalview .outer-nav {
    opacity: 1;
    visibility: visible;
}

/* Animate menu items when menu is active */
.perspective--modalview .outer-nav li {
    transform: translateX(0);
    opacity: 1;
}

/* Staggered animation delays */
.perspective--modalview .outer-nav li:nth-child(1) { transition-delay: 0.1s; }
.perspective--modalview .outer-nav li:nth-child(2) { transition-delay: 0.2s; }
.perspective--modalview .outer-nav li:nth-child(3) { transition-delay: 0.3s; }
.perspective--modalview .outer-nav li:nth-child(4) { transition-delay: 0.4s; }
.perspective--modalview .outer-nav li:nth-child(5) { transition-delay: 0.5s; }

/* Decorative line matching site style */
.outer-nav li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    opacity: 0.5;
}

.outer-nav li:hover::after {
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .outer-nav li {
        font-size: 36px;
        margin: 15px 0;
    }
    
    .outer-nav li.is-active {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .outer-nav li {
        font-size: 28px;
        margin: 12px 0;
    }
    
    .outer-nav li.is-active {
        font-size: 34px;
    }
}

/* Restore critical animation classes */
.outer-nav li.is-vis:nth-child(2) {
    transition-delay: .04s;
}

.outer-nav li.is-vis:nth-child(3) {
    transition-delay: .08s;
}

.outer-nav li.is-vis:nth-child(4) {
    transition-delay: .12s;
}

.outer-nav li.is-vis:nth-child(5) {
    transition-delay: .16s;
}

/* Menu close button */
.menu-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 101;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.perspective--modalview .menu-close {
    opacity: 1;
    transform: scale(1);
}

/* Fix sticky hover states on iOS */
@media (hover: hover) {
  .work-request--options label:hover {
    transform: translateY(-3px);
  }
}

/* Fix for iOS input zoom */
@media screen and (-webkit-min-device-pixel-ratio: 0) { 
  select,
  textarea,
  input {
    font-size: 16px; /* Prevent zoom on focus */
  }
}

/* Fix for iOS height calculations */
@supports (-webkit-touch-callout: none) {
  .l-viewport {
    height: -webkit-fill-available;
  }
}

/* Fix font loading issues */
.wf-loading body {
  visibility: hidden;
}

.wf-active body,
.wf-inactive body {
  visibility: visible;
}



/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 30px;
    position: relative;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu:hover {
    transform: scale(1.1);
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #5614b0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(86, 20, 176, 0.3);
}

.burger-menu span:nth-child(1) {
    width: 70%;
    margin-left: auto;
}

.burger-menu span:nth-child(2) {
    width: 100%;
}

.burger-menu span:nth-child(3) {
    width: 85%;
    margin-left: auto;
}

.burger-menu.active span {
    width: 100%;
    background-color: #1976d2;
    box-shadow: 0 0 12px rgba(25, 118, 210, 0.5);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    transform: scaleX(0);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(86, 20, 176, 0.95) 0%, rgba(25, 118, 210, 0.95) 100%);
    padding: 80px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 20px;
    overflow: hidden;
}

.nav-menu.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(86, 20, 176, 0.3);
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu li:nth-child(4) { transition-delay: 0.4s; }

.nav-menu a {
    display: block;
    padding: 15px 30px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(25, 64, 255, 0) 0%, rgba(25, 64, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: #1940ff;
    transform: translateX(10px);
    text-shadow: 0 0 15px rgba(25, 64, 255, 0.3);
}

.nav-menu a:hover::before {
    transform: translateX(0);
}

@media (max-width: 1920px) {
    .burger-menu {
        display: flex;
    }
    .header--cta {
        margin-right: 80px;
    }
}

/* Safari/iOS specific fixes */
@supports (-webkit-backdrop-filter: none) {
    .intro--options > a {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

/* Prevent hover effects on touch devices */
@media (hover: none) {
    .intro--options > a:hover {
        transform: none;
    }
}

/* Fix for notched devices */
@supports (padding: max(0px)) {
    .intro--options {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

.activities-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.activity-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-image {
    width: 100%;
    height: auto;
    display: block;
}

.activity-title {
    font-size: 1.5em;
    margin: 15px 0;
    color: #333;
}

.activity-description {
    font-size: 1em;
    color: #666;
    padding: 0 15px 20px;
}

/* Google Form Button Styles */
.google-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    width: 100%;
    text-align: center;
}

.google-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0f33ff 0%, #1940ff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 51, 255, 0.3);
    max-width: 300px;
    width: 100%;
}

.google-form-button:hover {
    background: linear-gradient(135deg, #1940ff 0%, #0f33ff 100%);
    box-shadow: 0 6px 20px rgba(15, 51, 255, 0.4);
    transform: translateY(-2px);
}

.google-form-button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.google-form-button:hover svg {
    transform: translateX(5px);
}

.google-form-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.google-form-button:hover::after {
    left: 100%;
}

/* Cooperation Section Styles */
.cooperation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(86, 20, 176, 0.1),
        0 0 0 1px rgba(86, 20, 176, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cooperation-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2c3e50;
    text-shadow: 0 1px 3px rgba(86, 20, 176, 0.1);
    position: relative;
    z-index: 2;
}

.cooperation-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.3) 0%, rgba(255, 107, 129, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cooperation-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 213, 197, 0.3) 0%, rgba(46, 213, 197, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Contact section */
.contact {
    position: relative;
    padding: 50px 0;
    min-height: 100vh;
    width: 100%;
    background: url('../img/contact-visualhold.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.contact--lockup {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal--information {
    margin-bottom: 30px;
    padding: 20px;
    background: transparent;
    border-radius: 10px;
}

.modal--information p {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1em;
}

.modal--information table {
    width: 100%;
    border-spacing: 0 10px;
}

.modal--information td {
    padding: 5px 10px;
    color: #2c3e50;
}

.modal--information td:first-child {
    font-weight: bold;
    width: 100px;
}

.modal--information a {
    color: #1940ff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.modal--information a:hover {
    color: #5614b0;
    text-shadow: 0 0 10px rgba(86, 20, 176, 0.5);
}





@media (max-width: 768px) {
    .activities-section {
        flex-direction: column;
        align-items: center;
    }

    .activity-card {
        margin-bottom: 20px;
    }
}
