/* =========================================
   ATERUI TECH - ABOUT PAGE STYLES
   =========================================
   Scoped to .about-page to avoid conflicts
   ========================================= */

/* CSS Variables - Scoped to about page */
.about-page {
    --at-primary-brand: #64ffda;
    --at-primary-brand-dark: #4fd4b8;
    --at-gold-accent: #F4D03F;
    --at-blue-accent: #74B9FF;
    --at-dark-bg: #111212;
    --at-dark-bg-light: #1a1b1b;
    --at-dark-bg-lighter: #242525;
    --at-light-bg: #f7f4e9;
    --at-light-bg-dark: #f0ede4;
    --at-light-text: #2d2d2d;
}

/* Base Styles - Scoped to about page */
.about-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--at-dark-bg);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.at-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--at-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.at-loading-text {
    font-size: 1.2rem;
    color: var(--at-primary-brand);
    animation: at-pulse 2s infinite;
}

@keyframes at-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

/* Header */
.at-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(17, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

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

.at-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--at-primary-brand);
    text-decoration: none;
    position: relative;
}

.at-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.at-nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.at-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.at-nav-links a.active,
.at-nav-links a:hover {
    color: var(--at-primary-brand);
}

/* Language Switch Styles */
.at-lang-switch {
    margin-left: 20px;
}

.at-lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

.at-lang-link:hover {
    background: rgba(100, 255, 218, 0.2);
    color: var(--at-primary-brand) !important;
    transform: translateY(-2px);
}

.at-lang-flag {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.at-lang-text {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Mobile Controls Container */
.at-mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Hamburger Menu Toggle */
.at-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.at-mobile-menu-toggle:hover {
    background: rgba(100, 255, 218, 0.2);
}

.at-hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--at-primary-brand);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.at-mobile-menu-toggle.active .at-hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.at-mobile-menu-toggle.active .at-hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
.at-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--at-dark-bg-light);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 100px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.at-mobile-nav.open {
    right: 0;
}

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

.at-mobile-nav li {
    margin: 0;
}

.at-mobile-nav a {
    display: block;
    padding: 20px 30px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.at-mobile-nav a:hover {
    background: rgba(100, 255, 218, 0.1);
    color: var(--at-primary-brand);
    padding-left: 40px;
}

.at-mobile-nav a.active {
    background: rgba(100, 255, 218, 0.1);
    color: var(--at-primary-brand);
    border-left: 4px solid var(--at-primary-brand);
}

/* Mobile Menu Overlay */
.at-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.at-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.at-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, var(--at-dark-bg-lighter) 0%, var(--at-dark-bg) 50%, #0d0e0e 100%);
}

.at-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 50%);
}

.at-constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.at-hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    animation: at-hero-fade-in 2s ease-out;
}

@keyframes at-hero-fade-in {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.at-hero-subtitle {
    font-size: 1.1rem;
    color: var(--at-primary-brand);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.at-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--at-primary-brand) 0%, #FFFFFF 50%, var(--at-blue-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.at-hero-description {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.at-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: at-bounce 2s infinite;
}

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

.at-scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Company Profile Section */
.at-company-profile {
    padding: 120px 0;
    background: var(--at-dark-bg);
}

.at-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.at-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--at-primary-brand), var(--at-blue-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.at-section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.at-profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: start;
}

.at-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.at-info-item {
    background: rgba(100, 255, 218, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.at-info-label {
    font-size: 0.9rem;
    color: var(--at-primary-brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.at-info-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.at-profile-title {
    font-size: 1.8rem;
    color: var(--at-primary-brand);
    margin-bottom: 20px;
    font-weight: 600;
}

.at-profile-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.at-board-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.at-board-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.15);
    transition: all 0.3s ease;
}

.at-board-member:last-child {
    border-bottom: none;
}

.at-board-member:hover {
    background: rgba(100, 255, 218, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.at-board-position {
    font-weight: 600;
    color: var(--at-primary-brand);
    flex: 1;
}

.at-board-name {
    color: white;
    font-weight: 500;
    text-align: right;
}

.at-approach-list {
    list-style: none;
    padding: 0;
}

.at-approach-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.at-approach-list li:last-child {
    border-bottom: none;
}

.at-approach-list strong {
    color: var(--at-primary-brand);
}

/* Company History Section */
.at-company-history {
    padding: 120px 0;
    background: var(--at-light-bg);
    color: var(--at-light-text);
}

.at-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.at-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--at-primary-brand);
    transform: translateX(-50%);
}

.at-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.at-timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.at-timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--at-primary-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin: 0 40px;
}

.at-timeline-icon {
    font-size: 2rem;
}

.at-timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.at-timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--at-light-text);
    margin-bottom: 10px;
}

.at-timeline-date {
    font-size: 1rem;
    color: var(--at-primary-brand);
    font-weight: 600;
    margin-bottom: 15px;
}

.at-timeline-description {
    font-size: 1.1rem;
    color: rgba(45, 45, 45, 0.8);
    line-height: 1.7;
}

/* Values Section */
.at-values {
    padding: 120px 0;
    background: var(--at-dark-bg);
}

.at-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.at-value-card {
    background: rgba(100, 255, 218, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.at-value-card:hover {
    transform: translateY(-10px);
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--at-primary-brand);
}

.at-value-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.at-value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--at-primary-brand);
    margin-bottom: 15px;
}

.at-value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Call to Action Section */
.at-cta-section {
    padding: 120px 0;
    background: var(--at-light-bg);
    color: var(--at-light-text);
}

.at-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.at-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--at-light-text);
    margin-bottom: 20px;
}

.at-cta-description {
    font-size: 1.3rem;
    color: rgba(45, 45, 45, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.at-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.at-cta-primary,
.at-cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.at-cta-primary {
    background: var(--at-primary-brand);
    color: var(--at-dark-bg);
}

.at-cta-primary:hover {
    background: var(--at-primary-brand-dark);
    transform: translateY(-2px);
}

.at-cta-secondary {
    background: transparent;
    color: var(--at-light-text);
    border: 2px solid var(--at-light-text);
}

.at-cta-secondary:hover {
    background: var(--at-light-text);
    color: var(--at-light-bg);
    transform: translateY(-2px);
}

/* ========================================
   CONTACT & FOOTER SECTION
   ======================================== */

/* Contact Section */
.at-contact-section {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--at-dark-bg);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.at-contact-section.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Dotted background pattern */
.at-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.at-contact-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.at-contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.at-contact-illustration {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.at-contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: at-rocket-float 3s ease-in-out infinite;
}

.at-contact-stars {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
}

.at-star {
    position: absolute;
    font-size: 1.5rem;
    animation: at-star-twinkle 2s ease-in-out infinite;
}

.at-star:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.at-star:nth-child(2) {
    top: 10px;
    right: 30px;
    animation-delay: 0.7s;
}

.at-star:nth-child(3) {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

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

@keyframes at-star-twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.at-contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--at-dark-bg);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.at-contact-subtitle {
    font-size: 1.2rem;
    color: rgba(45, 45, 45, 0.8);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Floating Plus Button */
.contact-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--at-primary-brand), var(--at-primary-brand-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.contact-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(23, 162, 184, 0.6);
}

.contact-toggle-btn:active {
    transform: scale(0.95);
}

/* Plus icon rotation animation */
.contact-toggle-btn .plus-icon {
    transition: transform 0.3s ease;
}

.contact-toggle-btn.active .plus-icon {
    transform: rotate(45deg);
}

/* Contact Form Modal Overlay */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Form Styles */
.at-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.at-form-group {
    display: flex;
    flex-direction: column;
}

.at-form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--at-dark-bg);
    margin-bottom: 8px;
}

.at-form-input,
.at-form-textarea {
    padding: 15px 20px;
    border: none;
    border-bottom: 3px solid var(--at-primary-brand);
    background: transparent;
    font-size: 1rem;
    color: var(--at-dark-bg);
    transition: all 0.3s ease;
    font-family: inherit;
}

.at-form-input:focus,
.at-form-textarea:focus {
    outline: none;
    border-bottom-color: var(--at-primary-brand-dark);
    background: rgba(100, 255, 218, 0.05);
}

.at-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.at-form-input::placeholder,
.at-form-textarea::placeholder {
    color: rgba(45, 45, 45, 0.5);
}

.at-submit-button {
    background: var(--at-primary-brand);
    color: var(--at-dark-bg);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.at-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
    background: var(--at-primary-brand-dark);
}

.at-submit-icon {
    transition: transform 0.3s ease;
}

.at-submit-button:hover .at-submit-icon {
    transform: translateX(5px);
}

.teal input[type="checkbox"], .teal input[type="radio"] { accent-color: var(--at-primary-brand); }

/* Radio button styles */
.at-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.at-radio-option {
    display: flex;
    align-items: center;
    position: relative;
}

.at-radio-input {
    position: absolute;
    opacity: 1;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.at-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    padding-left: 40px;
}

.at-radio-input:checked {
    color: var(--at-primary-brand);
}

.at-radio-input:checked + .at-radio-label:before {
    border-color: var(--at-primary-brand);
}

.at-radio-input:checked + .at-radio-label {
    font-weight: 500;
}

/* Checkbox styles */
.at-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.at-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Other input styles */
.at-other-input-container {
    margin-top: 8px;
    margin-left: 40px;
    animation: slideDown 0.3s ease-out;
}

.at-other-input {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.at-other-input:focus {
    outline: none;
    border-color: var(--at-primary-brand);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Single checkbox styles */
.at-single-checkbox {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.at-single-checkbox input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.at-single-checkbox label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.at-single-checkbox-input:checked + .at-single-checkbox-label {
    font-weight: 500;
}

/* Message styles */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Submit button updates */
.at-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
    }
    to {
        opacity: 1;
        max-height: 60px;
        margin-top: 8px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success/Error message styles */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.at-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.at-footer {
    background: var(--at-dark-bg);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.at-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.at-footer-section {
    color: rgba(255, 255, 255, 0.8);
}

.at-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--at-primary-brand);
    margin-bottom: 20px;
}

.at-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.at-contact-item strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.at-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.at-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.at-footer-links a:hover {
    color: var(--at-primary-brand);
}

.at-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.at-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--at-primary-brand);
    margin-bottom: 5px;
}

.at-brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.at-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .at-nav-links {
        gap: 30px;
    }
    
    .at-profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .at-timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .at-timeline-marker {
        margin: 20px 0;
    }
    
    .at-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .at-container {
        padding: 0 15px;
    }

    /* Hide desktop navigation */
    .at-nav-links {
        display: none;
    }
    
    /* Show mobile controls */
    .at-mobile-controls {
        display: flex;
    }

    /* Show mobile nav and overlay */
    .at-mobile-nav,
    .at-mobile-overlay {
        display: block;
    }

    .at-logo {
        font-size: 22px;
    }

    .at-logo-container img {
        width: 45px;
    }

    .at-mobile-lang {
        display: block;
        font-size: 35px;
    }

    .at-mobile-menu-toggle {
        display: flex;
    }
    
    .at-mobile-nav {
        display: block;
    }
    
    .at-section-title {
        font-size: 2.5rem;
    }
    
    .at-info-grid {
        grid-template-columns: 1fr;
    }
    
    .at-values-grid {
        grid-template-columns: 1fr;
    }
    
    .at-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .at-radio-label, .at-checkbox-label {
        font-size: 16px;
        padding: 12px 16px;
        padding-left: 44px;
    }
    
    .at-radio-label:before, .at-checkbox-label:before {
        left: 16px;
        width: 20px;
        height: 20px;
    }
    
    .at-radio-label:after {
        left: 22px;
        width: 8px;
        height: 8px;
    }
    
    .at-checkbox-label:after {
        left: 21px;
    }
    
    .at-other-input-container {
        margin-left: 44px;
    }
    
    .at-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .at-hero {
        padding: 0 20px;
    }
    
    .at-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .at-hero-description {
        font-size: 1rem;
    }
    
    .at-section-title {
        font-size: 2rem;
    }
    
    .at-mv-card {
        padding: 25px;
    }
    
    .at-mv-title {
        font-size: 1.8rem;
    }
    
    .at-cta-title {
        font-size: 2rem;
    }
}