/* ==========================================
   CUSTOM APPLICATIONS PAGE STYLES
   ========================================== */

/* Hero Section */
.apps-hero {
    padding-top: 140px;
    padding-bottom:  80px;
    background:  linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.apps-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(1, 117, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color:  var(--text-secondary);
    transition: var(--transition-base);
}

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

.breadcrumb-nav span {
    color: var(--text-light);
}

.page-title {
    font-size: 52px;
    font-weight:  700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.page-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom:  32px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    font-size:  14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.feature-badge:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--bg-white);
}

.feature-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.feature-badge:hover svg {
    color: var(--bg-white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.trust-avatars {
    display: flex;
    margin-left: -8px;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border:  3px solid var(--bg-white);
    margin-left: -8px;
    transition: var(--transition-base);
}

.trust-avatars img:hover {
    transform: translateY(-4px);
    z-index: 2;
}

.trust-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Hero App Showcase */
.hero-app-showcase {
    position: relative;
    padding: 20px;
}

.app-window {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.window-header {
    background: #2d3748;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
}

.window-controls span:nth-child(1) {
    background: #ff5f57;
}

.window-controls span:nth-child(2) {
    background: #ffbd2e;
}

.window-controls span:nth-child(3) {
    background: #28ca42;
}

.window-title {
    color: #a0aec0;
    font-size: 13px;
    font-weight:  500;
}

.window-content {
    background: #1a202c;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-code {
    position: absolute;
    top: 60px;
    left: -40px;
    background: #1a202c;
    padding: 20px 24px;
    border-radius:  12px;
    box-shadow: var(--shadow-lg);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    animation: floatCode 4s ease-in-out infinite;
}

@keyframes floatCode {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

.code-line {
    color: #e2e8f0;
}

.code-tag {
    color: #f687b3;
}

.code-string {
    color: #68d391;
}

.code-number {
    color: #63b3ed;
}

.code-function {
    color: #fbbf24;
}

.tech-stack-preview {
    position: absolute;
    bottom: 40px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-item {
    background: var(--bg-white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight:  600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.tech-item:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-item:nth-child(2) {
    animation-delay:  0.2s;
}

.tech-item:nth-child(3) {
    animation-delay: 0.3s;
}

.tech-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* App Types Section */
.app-types-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.app-type-card {
    background: var(--bg-grey);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.app-type-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.app-type-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.app-type-icon svg {
    width: 36px;
    height: 36px;
    color: var(--bg-white);
}

.app-type-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.app-type-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin:  0 0 20px 0;
}

.app-features li {
    font-size: 14px;
    color: var(--text-primary);
    padding:  6px 0;
    padding-left: 20px;
    position: relative;
}

.app-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.app-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.app-tech span {
    padding: 4px 12px;
    background: var(--bg-white);
    border:  1px solid var(--border-color);
    border-radius: 16px;
    font-size:  12px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Development Process Section */
.dev-process-section {
    padding: 80px 0;
    background-color: var(--bg-grey);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom:  0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom:  60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-deliverables {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
    box-shadow: 0 0 0 8px var(--bg-grey);
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow:  var(--shadow-sm);
    max-width: 450px;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.timeline-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 22px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-deliverables {
    display:  flex;
    flex-wrap:  wrap;
    gap: 8px;
}

.timeline-deliverables span {
    padding: 6px 12px;
    background: var(--bg-grey);
    border-radius: 16px;
    font-size: 12px;
    font-weight:  500;
    color: var(--text-primary);
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.tech-stack-grid {
    display:  grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tech-category-box {
    background: var(--bg-grey);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.tech-category-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tech-category-box h3 {
    font-size: 20px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tech-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: var(--transition-base);
}

.tech-badge:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.tech-badge:hover .tech-logo,
.tech-badge:hover span {
    color: var(--bg-white);
}

.tech-logo {
    font-size: 32px;
    transition: var(--transition-base);
}

.tech-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition-base);
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background-color: var(--bg-grey);
}

.case-study-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.case-study-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.case-study-image img {
    width: 100%;
    height:  100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size:  12px;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.case-study-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-content h3 {
    font-size: 22px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.case-study-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex:  1;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom:  20px;
    padding: 20px;
    background: var(--bg-grey);
    border-radius: 12px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.case-tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tech-used span {
    padding: 6px 12px;
    background: var(--bg-grey);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Why Apps Section */
.why-apps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.why-apps-content {
    margin-bottom: 30px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns:  repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-grey);
    border-radius: 12px;
    transition: var(--transition-base);
}

.stat-item:hover {
    background:  var(--primary-light);
    transform: translateY(-4px);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-text {
    color: var(--bg-white);
}

.stat-icon {
    font-size: 40px;
    transition: var(--transition-base);
}

.stat-number {
    font-size: 28px;
    font-weight:  700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    transition: var(--transition-base);
}

.stat-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: var(--bg-grey);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.why-feature-item:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(8px);
}

.feature-number {
    font-size: 48px;
    font-weight:  700;
    color: rgba(1, 117, 58, 0.15);
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size:  20px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin:  0;
}

/* Apps Testimonials Section */
.apps-testimonials-section {
    padding:  80px 0;
    background-color: var(--bg-grey);
}

.testimonials-grid-apps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-app-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.testimonial-app-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.client-logo img {
    max-height: 40px;
    width: auto;
}

.testimonial-rating {
    color: #ffc107;
    font-size:  18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    flex:  1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-light);
    flex-shrink: 0;
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Apps CTA Section */
.apps-cta-section {
    padding:  80px 0;
    background:  linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.apps-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-apps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items:  start;
    position: relative;
    z-index: 1;
}

.cta-apps-content h2 {
    font-size:  42px;
    font-weight:  700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-apps-content p {
    font-size: 18px;
    color: var(--bg-white);
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin:  0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--bg-white);
    font-weight: 500;
}

.cta-features svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.cta-apps-form {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow:  var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.apps-contact-form h3 {
    font-size:  24px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.form-row-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.apps-contact-form input,
.apps-contact-form select,
.apps-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.apps-contact-form input:focus,
.apps-contact-form select:focus,
.apps-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 117, 58, 0.1);
}

.apps-contact-form textarea {
    resize: vertical;
}

.apps-contact-form .btn {
    margin-top: 8px;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.form-privacy svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-title {
        font-size: 42px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row ! important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-deliverables {
        justify-content: flex-start;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .cta-apps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-apps-form {
        position: relative;
        top: 0;
    }
    
    .why-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:  768px) {
    .apps-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-badge {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .floating-code {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
    }
    
    .tech-stack-preview {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .why-features-list {
        gap: 16px;
    }
    
    .why-feature-item {
        padding: 20px;
    }
    
    .feature-number {
        font-size: 36px;
    }
    
    .testimonials-grid-apps {
        grid-template-columns: 1fr;
    }
    
    .form-row-apps {
        grid-template-columns: 1fr;
    }
    
    .cta-apps-content h2 {
        font-size: 32px;
    }
    
    .cta-apps-form {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .app-type-card {
        padding: 24px;
    }
    
    .app-type-icon {
        width: 56px;
        height: 56px;
    }
    
    .app-type-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .marker-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-content {
        padding:  20px;
    }
    
    .tech-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-feature-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-number {
        font-size: 32px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cta-apps-content h2 {
        font-size: 26px;
    }
    
    .cta-apps-content p {
        font-size:  16px;
    }
    
    .cta-apps-form {
        padding: 20px;
    }
    
    .apps-contact-form h3 {
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .apps-hero::before,
    .apps-cta-section::before,
    .floating-code,
    .tech-stack-preview,
    .cta-apps-form {
        display: none;
    }
}

/* Accessibility Improvements */
.feature-badge:focus,
.tech-badge:focus,
.apps-contact-form input:focus,
.apps-contact-form select:focus,
.apps-contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading Animation for Tech Badges */
.tech-badge {
    animation: fadeInUp 0.5s ease forwards;
}

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