:root {
    --primary: #1abc9c;
    --primary-glow: rgba(240, 195, 45, 0.3);
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-main: #f8f8f8;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, #f0c32d 0%, #db8f1d 100%);
    --mesh-gradient: radial-gradient(at 0% 0%, rgba(240, 195, 45, 0.1) 0px, transparent 50%),
                    radial-gradient(at 50% 0%, rgba(240, 195, 45, 0.05) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, rgba(240, 195, 45, 0.1) 0px, transparent 50%);
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image: var(--mesh-gradient);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Top Floating Bar */
.top-bar {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    background: var(--primary);
    backdrop-filter: none;
    border: none;
    padding: 10px 15px;
    border-radius: 0;
    z-index: 2001;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: none;
    color: #000;
    flex-wrap: wrap;
    text-align: center;
}

.sale-badge {
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sale-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    animation: pulseBlack 1.5s infinite;
}

@keyframes pulseBlack {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(0,0,0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0, 0); }
}

.contact-text {
    color: #000;
    border-left: 1px solid rgba(0,0,0,0.3);
    padding-left: 15px;
}

.contact-text a {
    color: #000;
    text-decoration: underline;
    transition: var(--transition);
}

.contact-text a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .contact-text {
        border-left: none;
        padding-left: 0;
    }
}

/* Navigation Styles */
.glass-nav {
    position: absolute;
    top: 100px; /* Aligned below top-bars */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px; /* Oval pill shape */
    z-index: 1000;
    padding: 8px 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.glass-nav.nav-scrolled {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    left: 0;
    transform: none;
    background: rgba(8, 8, 8, 0.95);
    border-top: none;
    padding: 12px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; /* Crisp white for maximum visibility */
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: typingLogo 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .btn-primary {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@keyframes typingLogo {
    0% {
        width: 0;
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    10% {
        opacity: 1;
        width: 1ch; /* First letter reveal */
        clip-path: inset(0 90% 0 0);
    }
    100% {
        opacity: 1;
        width: 100%;
        clip-path: inset(0 0 0 0);
    }
}

.logo-text .accent {
    color: var(--accent); /* Constant accent color for a sharp split */
    animation: accentPulse 3s infinite ease-in-out;
}

@keyframes accentPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 5px var(--accent-glow)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 15px var(--accent-glow)); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: var(--white);
    color: #000;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.8)), url('https://images.unsplash.com/photo-1574258495973-f010dfbb5371?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Services */
.section {
    padding: 120px 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

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

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    padding: 60px 0;
}

.cta-content {
    text-align: center;
}

.cta-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* AI Chat Widget */
#ai-chat-root {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: var(--accent-gradient);
    border: none;
    color: #000;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    margin: 80px 0 0 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.partners-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 40px;
    opacity: 0.5;
}

.partners-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.partner-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0;
    animation: revealLogo 1.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes revealLogo {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
    }
}

.partner-item:nth-child(1) { animation-delay: 0.2s; }
.partner-item:nth-child(2) { animation-delay: 0.4s; }
.partner-item:nth-child(3) { animation-delay: 0.6s; }
.partner-item:nth-child(4) { animation-delay: 0.8s; }

.partner-item:hover {
    filter: grayscale(0%);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 10px 30px -10px var(--accent);
    transform: translateY(-8px);
}

.partner-item img {
    height: 35px;
    max-width: 150px;
    object-fit: contain;
}

@media (max-width: 1000px) {
    .partners-grid {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        justify-content: flex-start;
    }
    .partner-item {
        padding: 15px 20px;
    }
    .partner-item img {
        height: 28px;
    }
}

/* AI Chat Widget Refinement */
#ai-chat-root {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.chat-bubble, .whatsapp-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
}

.chat-bubble {
    background: var(--accent-gradient);
    color: #000;
}

.whatsapp-bubble {
    background: #25D366;
    animation: pulseGlowGreen 3s infinite;
}

@keyframes pulseGlowGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

.chat-bubble:hover, .whatsapp-bubble:hover {
    transform: scale(1.1) translateY(-5px);
}

.chat-window {
    position: absolute;
    bottom: 150px; /* Above bubbles */
    right: 0;
    width: 380px;
    height: 520px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.9);
}

.chat-header {
    padding: 25px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 14px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    max-width: 85%;
    line-height: 1.5;
    position: relative;
    animation: msgFadeIn 0.3s ease-out;
}

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

.message.system {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #eee;
}

.message.user {
    background: var(--accent-gradient);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-input-area {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 12px;
}

#chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 12px 18px;
    color: #fff;
    outline: none;
    transition: all 0.3s;
}

#chat-input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

/* Contact Page Special Styles */
.contact-page {
    padding-top: 180px;
    background: radial-gradient(circle at 10% 10%, var(--primary-glow) 0%, transparent 40%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.info-card h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    box-shadow: 0 0 20px var(--primary-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.w-full { width: 100%; }

/* Locations SEO Grid */
.judete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.judet-link {
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
}

/* FAQ Section */
.faq-section { margin-top: 100px; }

/* Portfolio Grid - Refined 3-Column Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.portfolio-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 25px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
}

.category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.portfolio-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-card {
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
}

.faq-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.faq-card.active .faq-answer { display: block; }
.faq-card.active .faq-question { color: var(--primary); }

/* Modern Footer Styles */
.main-footer {
    background: #0a0a0a;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-column ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-anpc {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-anpc img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    transition: opacity 0.3s;
    filter: brightness(0.8);
}

.footer-anpc img:hover {
    opacity: 0.8;
    filter: brightness(1);
}

@media (max-width: 768px) {
    .footer-anpc {
        justify-content: center;
    }
}

.contact-card-footer {
    padding: 25px;
    border-radius: 20px;
    text-align: left;
}

.agent-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-email {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-policy a:hover {
    color: white;
}

.e-web-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.e-web-link:hover {
    text-decoration: underline;
}

/* Legal Pages Styling */
.legal-page { background: #0a0a0a; color: white; }
.nav-minimal { 
    padding: 20px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    display: flex; align-items: center; justify-content: space-between;
}
.container-nav { display: flex; justify-content: space-between; align-items: center; }
.nav-back { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.nav-back:hover { color: white; }

.legal-header { padding: 100px 0 60px 0; text-align: center; }
.legal-header h1 { font-size: 3.5rem; margin-bottom: 15px; }
.legal-header p { color: var(--text-muted); font-size: 1.1rem; }

.container-small { max-width: 800px; margin: 0 auto; padding: 60px; }
.legal-section { margin-bottom: 50px; line-height: 1.8; color: rgba(255, 255, 255, 0.8); }
.legal-section h3 { color: white; margin-bottom: 20px; font-size: 1.4rem; }

.company-card { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 30px; 
    border-radius: 15px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}
.company-card p { margin-bottom: 10px; color: var(--text-muted); }
.company-card strong { color: white; margin-right: 5px; }

.legal-footer { padding: 40px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 100px; color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
    .legal-header h1 { font-size: 2.5rem; }
    .container-small { padding: 30px; }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-page {
        padding-top: 140px;
    }
}
