/* Serbia Insure - Original Design CSS */
/* ==================================== */

/* CSS Variables - Original Color Palette */
:root {
    /* Primary Colors */
    --primary-blue: #0B1E3B;
    --accent-gold: #E6B34B;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F4F7F9;
    --bg-testimonial: #E8F1F8;
    --bg-dark: #0B1E3B;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    
    /* Container */
    --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--primary-blue);
}

.section-title-light {
    color: var(--text-light);
}

/* Buttons */
.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #d4a43e;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-blue);
    z-index: 1000;
    padding: var(--space-md) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-gold);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-accent {
    color: var(--accent-gold);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.lang-current {
    color: var(--accent-gold);
}

.lang-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    min-width: 120px;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: background-color var(--transition-fast);
}

.lang-option:hover {
    background-color: var(--bg-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%230B1E3B"/><circle cx="200" cy="200" r="400" fill="%231a2a4d" opacity="0.5"/><circle cx="1700" cy="800" r="500" fill="%231a2a4d" opacity="0.3"/><path d="M0 600 Q480 500 960 600 T1920 600 L1920 1080 L0 1080 Z" fill="%2315283d" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 30, 59, 0.85) 0%, rgba(11, 30, 59, 0.7) 100%);
}

.hero .container {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

/* Beneficiary Code Section */
.beneficiary-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.beneficiary-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.beneficiary-form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.beneficiary-input-group {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin-bottom: 0;
}

.beneficiary-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    text-align: left;
}

.beneficiary-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.beneficiary-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(230, 179, 75, 0.2);
}

.beneficiary-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.beneficiary-btn {
    white-space: nowrap;
}

.beneficiary-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-md);
}

.beneficiary-actions .beneficiary-btn {
    margin: 0 auto;
}

.beneficiary-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.beneficiary-note em {
    font-style: italic;
}

/* Custom Alert Modal */
.custom-alert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.custom-alert-modal.visible {
    display: flex;
}

.custom-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-alert-content {
    position: relative;
    background-color: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 2001;
}

.custom-alert-message {
    font-size: 1rem;
    color: #e74c3c;
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.custom-alert-btn {
    padding: var(--space-sm) var(--space-xl);
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.custom-alert-btn:hover {
    background-color: #d4a43e;
}

/* Advantages Section */
.advantages {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.advantage-card {
    background-color: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

.advantage-title {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.advantage-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Subscribe Section */
.why-subscribe {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.why-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.why-highlight {
    background-color: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
}

.highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.check-item span {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Target Section */
.target {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-light);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.target-card {
    background-color: var(--primary-blue);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.target-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-illustration svg {
    width: 100%;
    height: 100%;
}

.target-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.target-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background-color: var(--bg-testimonial);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-md);
    color: var(--primary-blue);
    opacity: 0.3;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
}

.author-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: var(--space-3xl) 0;
    background-color: var(--primary-blue);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-white);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.faq-check svg {
    width: 100%;
    height: 100%;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    margin-left: auto;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.faq-toggle svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    padding-left: 52px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-light);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group:last-of-type {
    margin-bottom: var(--space-xl);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* Footer */
.footer {
    background-color: var(--primary-blue);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: var(--accent-gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-lang .active {
    color: var(--accent-gold);
}

.footer-lang a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-lang a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advantages-grid,
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .target-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-blue);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hamburger {
        display: flex;
    }
    
    .language-selector {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .advantages-grid,
    .target-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .target-card:last-child {
        grid-column: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .faq-answer p {
        padding-left: var(--space-lg);
    }
    
    .faq-check {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-cta {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

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

.advantage-card,
.target-card,
.testimonial-card,
.faq-item {
    animation: fadeInUp 0.5s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   CLIENT AREA STYLES
   ================================ */

/* Client Area Page */
.client-area-page {
    background-color: var(--bg-light);
}

/* Client Header */
.client-header {
    background-color: var(--primary-blue);
}

.client-header-info {
    display: flex;
    align-items: center;
}

.client-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-logout svg {
    width: 16px;
    height: 16px;
}

/* Client Area Content */
.client-area {
    padding: var(--space-2xl) 0;
    min-height: calc(100vh - 200px);
}

.client-area-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.client-area-title h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.status-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.status-icon-success {
    font-size: 1rem;
}

.status-value {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Beneficiary Section */
.beneficiary-section {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.section-header-simple {
    margin-bottom: var(--space-lg);
}

.section-header-simple h2 {
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.beneficiary-info-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.beneficiary-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beneficiary-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
}

.beneficiary-details h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.beneficiary-birthplace {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.beneficiary-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contracts Section */
.contracts-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.contract-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.contract-header {
    padding: var(--space-lg);
    background-color: var(--primary-blue);
}

.contract-header h2 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.contract-type {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.contract-info,
.capital-section,
.contributions-section {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--bg-light);
}

.contract-info:last-child,
.capital-section:last-child,
.contributions-section:last-child {
    border-bottom: none;
}

.contract-info h3,
.capital-section h3,
.contributions-section h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.status-active {
    color: #27ae60;
}

.status-ok {
    color: #27ae60;
}

/* Capital Section */
.capital-section {
    background-color: var(--bg-light);
}

.capital-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.capital-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Summary Section */
.summary-section {
    max-width: 900px;
    margin: 0 auto;
}

.summary-card {
    background-color: var(--primary-blue);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
}

.summary-card h2 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.total-capital {
    margin-bottom: var(--space-xl);
}

.total-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.total-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.beneficiary-final {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.beneficiary-final span:first-child {
    margin-right: var(--space-sm);
}

.beneficiary-name {
    font-weight: 700;
    color: var(--text-light);
}

/* Summary Disclaimer */
.summary-disclaimer {
    margin-top: var(--space-xl);
}

/* Disclaimer Box with White Background */
.disclaimer-box {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.disclaimer-text em {
    font-style: italic;
}

.disclaimer-fees {
    font-size: 1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: var(--space-md);
}

/* HT Label */
.ht-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: var(--space-sm);
}

.total-amount .ht-label {
    font-size: 1.5rem;
}

/* Important Info Section */
.important-info {
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background-color: #fff9e6;
    border: 1px solid #e6c84b;
    border-radius: var(--radius-md);
}

.info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive for Client Area */
@media (max-width: 768px) {
    .beneficiary-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .status-bar {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .capital-amount {
        font-size: 2rem;
    }
    
    .total-amount {
        font-size: 2.25rem;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .client-header-info {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .client-area-title h1 {
        font-size: 1.25rem;
    }
    
    .capital-amount {
        font-size: 1.75rem;
    }
    
    .total-amount {
        font-size: 1.75rem;
    }
}
