:root {
    --bg: #080b12;
    --bg-panel: #111827;
    --primary: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.4);
    --secondary: #7000ff;
    --secondary-glow: rgba(112, 0, 255, 0.4);
    --accent: #ff007a;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===================== BACKGROUND GLOWS ===================== */
.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.bg-glow-2 {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 40px) scale(1.1);
    }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== LAYOUT ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

/* ===================== TYPOGRAPHY ===================== */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-switch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-switch:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.lang-switch {
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.lang-switch:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===================== DROPDOWN ===================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111827;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    list-style: none;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 24px;
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--glass-bg);
    color: var(--primary) !important;
}

/* ===================== BUTTONS ===================== */
.btn {
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #fff;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--primary);
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(112, 0, 255, 0.15);
    border: 1px solid rgba(112, 0, 255, 0.4);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(112, 0, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(112, 0, 255, 0);
    }
}

/* ===================== PARTICLES ===================== */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: moveParticles linear infinite;
}

@keyframes moveParticles {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-1000px) translateX(200px) scale(0);
        opacity: 0;
    }
}

.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    left: 10%;
    bottom: -10%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 25px;
    height: 25px;
    left: 30%;
    bottom: -10%;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 15px;
    height: 15px;
    left: 50%;
    bottom: -10%;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 8px;
    height: 8px;
    left: 70%;
    bottom: -10%;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 90%;
    bottom: -10%;
    animation-duration: 30s;
}

/* ===================== SECTIONS ===================== */
.services,
.pricing,
.cta,
.content-section,
.process-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* ===================== SERVICE CARDS ===================== */
.services-grid,
.pricing-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card,
.pricing-card,
.process-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all 0.4s;
}

.service-card:hover,
.pricing-card:hover,
.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(0, 240, 255, 0.2));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.4), rgba(0, 240, 255, 0.4));
    box-shadow: 0 0 20px var(--primary-glow);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================== PROCESS CARDS ===================== */
.process-card {
    text-align: center;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.process-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.process-card h3 {
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===================== TECH SLIDER ===================== */
.tech-slider {
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
    margin: 40px 0;
}

.tech-track {
    display: flex;
    gap: 40px;
    animation: techScroll 25s linear infinite;
    width: max-content;
}

.tech-track:hover {
    animation-play-state: paused;
}

@keyframes techScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s;
    min-width: 80px;
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

.tech-item:hover {
    color: var(--text);
}

/* ===================== PRICING ===================== */
.pricing-card {
    position: relative;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list .fa-check {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Popular card highlight */
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================== CTA SECTION ===================== */
.cta-box {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    padding: 140px 0 70px;
    text-align: center;
    background: linear-gradient(180deg, rgba(112, 0, 255, 0.08) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ===================== CONTACT ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 80px;
    align-items: center;
}

.contact-info-clean h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.contact-info-clean .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
    margin-bottom: 20px;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.contact-card i {
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-card a {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.form-premium {
    background: #111827;
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.form-premium h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-premium>p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.input-group {
    display: grid;
    gap: 20px;
}

.form-premium input,
.form-premium select,
.form-premium textarea {
    background: #1f2937;
    border: 1px solid #374151;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-premium select option {
    background: #1f2937;
}

.form-premium input:focus,
.form-premium select:focus,
.form-premium textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* ===================== FOOTER ===================== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    background: var(--bg-panel);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* ===================== GADGETS ===================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-panel);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 150%);
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 12px;
    z-index: 1150;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: 0.5s;
    width: 90%;
    max-width: 700px;
}

.cookie-banner.visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    z-index: 1100;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 10px;
    flex: 1;
    transition: color 0.3s;
}

.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

/* ===================== ARTICLE CONTENT ===================== */
.content-section article h2,
.content-section article h3 {
    margin: 32px 0 12px;
    color: var(--text);
}

.content-section article p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.content-section article ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-section article ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===================== LIGHT MODE ===================== */
body.light-mode {
    --bg: #f8fafc;
    --bg-panel: #ffffff;
    --text: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --primary: #0088ff;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.85);
}

body.light-mode .dropdown-menu,
body.light-mode .mobile-bottom-nav {
    background: #ffffff;
}

body.light-mode .form-premium {
    background: #f1f5f9;
}

body.light-mode .form-premium input,
body.light-mode .form-premium select,
body.light-mode .form-premium textarea {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #0f172a;
}

body.light-mode .bg-glow {
    background: radial-gradient(circle, rgba(0, 136, 255, 0.08) 0%, transparent 70%);
}

body.light-mode .bg-glow-2 {
    background: radial-gradient(circle, rgba(0, 136, 255, 0.06) 0%, transparent 70%);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-card {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .whatsapp-float,
    .back-to-top {
        bottom: 90px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .form-premium {
        padding: 30px 20px;
    }

    .navbar .btn-nav {
        display: none;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .tech-slider {
        margin: 20px 0;
    }
}

/* ===================== SENIOR CONTACT UI ===================== */
.contact-grid-premium {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

.contact-sidebar {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.link-action {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.link-action:hover {
    gap: 12px;
    filter: brightness(1.2);
}

.trust-footer {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-small {
    display: flex;
    gap: 15px;
}

.social-small a {
    color: var(--text-muted);
    transition: 0.3s;
}

.social-small a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Form Container Senior */
.contact-form-container {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
}

.step-indicator {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-muted);
}

/* Floating Labels System */
.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.form-group.floating textarea~label {
    top: 25px;
    transform: none;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--glass-border);
    padding: 18px 20px;
    border-radius: 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.form-group.floating input:focus~label,
.form-group.floating input:not(:placeholder-shown)~label,
.form-group.floating select:focus~label,
.form-group.floating select:not([value=""]):valid~label,
.form-group.floating textarea:focus~label,
.form-group.floating textarea:not(:placeholder-shown)~label {
    top: -12px;
    left: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-panel);
    padding: 0 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-senior {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
}

.submit-senior:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.4);
}

.form-footer {
    margin-top: 10px;
}

.form-privacy {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-privacy a {
    color: var(--primary);
}

/* Map Section */
.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2);
}

.map-overlay-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    pointer-events: none;
}

.badge-maps {
    background: var(--bg-panel);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: 2;
        position: static;
    }

    .contact-form-container {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}