/* PatientConvert AI - Shared Nav/Footer Styles */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-100: #F7F7F7;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #0066FF;
    --accent-light: rgba(0, 102, 255, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: inherit;
    outline: none;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gray-400);
    outline-offset: 2px;
}

a {
    text-decoration: none;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 24px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    transition: filter 0.3s ease;
}

.logo-skyhi {
    position: relative;
    z-index: 5;
    background: inherit;
    margin-right: 0.3em;
}

.logo .ai-text {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.nav-icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.search-icon,
.menu-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.search-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--black);
    border-radius: 50%;
    top: 0;
    left: 0;
    transition: border-color 0.3s ease;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 7px;
    background: var(--black);
    transform: rotate(-45deg);
    bottom: -2px;
    right: -2px;
    transition: background-color 0.3s ease;
}

.menu-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                background-color 0.3s ease;
    transform-origin: center;
    transform: rotate(0deg) translate(0px, 0px);
    opacity: 1;
}

.nav-icon-btn.active .menu-icon span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-icon-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-icon-btn.active .menu-icon span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .menu-overlay,
    .search-overlay,
    .contact-overlay,
    .menu-overlay-content,
    .search-overlay-content,
    .contact-overlay-content {
        transition: none !important;
        animation: none !important;
    }
}

/* Full Screen Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                visibility 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.menu-overlay-content {
    padding: 120px 60px 60px;
    height: 100%;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
    opacity: 0;
}

.menu-overlay.active .menu-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.menu-close {
    position: fixed;
    top: 36px;
    right: 44px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-overlay .menu-close span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-overlay .menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.search-overlay .menu-close span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.search-overlay .menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-links {
    list-style: none;
    margin-bottom: 60px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s,
                opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.menu-overlay.active .menu-links {
    transform: translateY(0);
    opacity: 1;
}

.menu-links li {
    margin-bottom: 8px;
}

.menu-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.menu-links a:hover {
    transform: translateX(10px);
    opacity: 0.8;
}

.menu-footer {
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s,
                opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.menu-overlay.active .menu-footer {
    transform: translateY(0);
    opacity: 1;
}

.menu-footer-column h4 {
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.menu-footer-column ul {
    list-style: none;
}

.menu-footer-column li {
    margin-bottom: 12px;
}

.menu-footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    position: relative;
}

.menu-footer-column a:hover {
    color: var(--white);
    transform: translateX(16px);
}

.menu-footer-column a:hover .footer-plus-icon {
    opacity: 1;
    left: -14px;
    transform: rotate(180deg) scale(1);
    color: var(--white);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.search-overlay-content {
    padding: 120px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 20px 0;
    font-size: 32px;
    border: none;
    border-bottom: 2px solid var(--gray-300);
    background: transparent;
    outline: none;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-suggestions {
    margin-top: 40px;
}

.search-suggestions h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.search-suggestions ul {
    list-style: none;
}

.search-suggestions li {
    margin-bottom: 16px;
}

.search-suggestions a {
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s ease;
}

.search-suggestions a:hover {
    color: var(--gray-600);
}

/* Search Results Styles */
.search-category {
    margin-bottom: 32px;
}

.search-category:last-child {
    margin-bottom: 0;
}

.search-category-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.search-results-list {
    list-style: none;
}

.search-result-item {
    margin-bottom: 4px;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.search-result-item:hover,
.search-result-item.selected {
    background-color: var(--gray-100);
}

.search-result-link {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    gap: 4px;
}

.search-result-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.search-result-subtitle {
    font-size: 14px;
    color: var(--gray-500);
}

.search-result-title mark,
.search-result-subtitle mark {
    background-color: rgba(0, 102, 255, 0.15);
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

.search-no-results p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Contact Form Overlay */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.contact-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.contact-overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--white);
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.contact-overlay.active .contact-overlay-content {
    transform: translateX(0);
}

.contact-form-container {
    width: 100%;
    max-width: none;
    background: var(--white);
    padding: 60px 50px 80px;
    border-radius: 0;
    box-shadow: none;
    border: none;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.investor-relations-link {
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    z-index: 10;
}

.investor-relations-link:hover {
    color: var(--black);
    transform: translateX(16px);
}

.investor-plus-icon {
    display: inline-block;
    position: absolute;
    left: -16px;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-500);
}

.investor-relations-link:hover .investor-plus-icon {
    opacity: 1;
    left: -14px;
    transform: rotate(180deg) scale(1);
    color: var(--black);
}

.contact-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--black);
    text-align: center;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 40px;
}

/* Captcha Section */
.captcha-section {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.captcha-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--black);
}

.captcha-question {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--black);
    padding: 16px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--gray-300);
}

.captcha-input {
    width: 120px;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    margin-right: 12px;
    text-align: center;
}

/* Hide number input arrows/spinners */
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.captcha-btn {
    padding: 12px 24px;
    font-size: 14px;
}

.captcha-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
}

/* Contact Form */
.contact-form {
    animation: fadeInUp 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 8px;
}

/* Success Message */
.success-message {
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.success-message h3 {
    font-size: 24px;
    color: #059669;
    margin-bottom: 16px;
}

.success-message p {
    font-size: 16px;
    color: var(--gray-600);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    background: var(--gray-100);
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload-box:hover,
.file-upload-wrapper:focus-within .file-upload-box {
    border-color: var(--gray-400);
    background: var(--gray-200);
}

.file-upload-box.dragover {
    border-color: var(--black);
    background: rgba(0, 0, 0, 0.05);
}

.file-upload-box svg {
    color: var(--gray-500);
    margin-bottom: 12px;
}

.file-upload-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.file-upload-hint {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.file-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    margin-top: 12px;
}

.file-selected svg {
    color: #059669;
    flex-shrink: 0;
}

.file-name {
    flex: 1;
    font-size: 14px;
    color: var(--black);
    word-break: break-all;
}

.file-remove {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove:hover {
    color: #dc2626;
}

.file-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
}

/* Career Overlay Accent Color Override */
.career-overlay .contact-title {
    color: var(--black);
}

.career-overlay .btn-primary {
    background: #14b8a6;
}

.career-overlay .btn-primary:hover {
    background: #0d9488;
}

.career-overlay .success-message h3 {
    color: #14b8a6;
}

.contact-overlay .menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.contact-overlay .menu-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: none;
}

.contact-overlay .menu-close span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-overlay .menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Button Styles */
.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-800);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

/* Footer */
footer {
    padding: 60px 40px 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1.6px);
    -webkit-backdrop-filter: blur(1.6px);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: invert(1);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    position: relative;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(16px);
}

.footer-plus-icon {
    display: inline-block;
    position: absolute;
    left: -16px;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-500);
}

.footer-column a:hover .footer-plus-icon {
    opacity: 1;
    left: -14px;
    transform: rotate(180deg) scale(1);
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-design-credit {
    text-align: center;
    margin-top: 8px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Container (used by footer) */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Medium screens - Footer adjustment */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 280px;
    }
}

/* Mobile Responsive - Menu Footer */
@media (max-width: 768px) {
    .menu-footer {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation - Bottom Position */
@media (max-width: 768px) {
    nav#navbar {
        top: auto !important;
        bottom: 10px !important;
        left: 10px;
        right: 10px;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .nav-cta {
        display: none;
    }

    /* Add bottom padding to body to account for bottom navigation */
    body {
        padding-bottom: 80px;
    }

    .menu-links a {
        font-size: 24px;
    }

    .menu-overlay-content {
        padding: 100px 30px 30px;
    }

    .search-overlay-content {
        padding: 100px 30px;
    }

    .search-input {
        font-size: 24px;
    }

    .contact-overlay-content {
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }

    .contact-form-container {
        padding: 80px 30px 40px;
        margin-top: 0;
    }

    .contact-overlay .menu-close {
        top: 20px;
        right: 20px;
    }

    .investor-relations-link {
        top: 20px;
        left: 20px;
        font-size: 13px;
    }

    .contact-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .captcha-input {
        width: 100px;
        margin-right: 8px;
        margin-bottom: 12px;
    }

    .captcha-btn {
        width: 100%;
        margin-top: 8px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile footer styles */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-right {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .footer-design-credit {
        margin-top: 0;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
