/* ==================== VARIABLES ==================== */
:root {
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --primary-bg: #EFF6FF;
    
    --accent: #0EA5E9;
    --success: #10B981;
    --error: #EF4444;
    
    --gradient: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    --gradient-light: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 40px rgba(37, 99, 235, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 0;
}

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

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: 2px;
}

.header-btn {
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-btn:hover {
    background: var(--primary-dark);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--gradient-light);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s ease-in-out infinite;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.highlight i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-actions .btn {
    width: 100%;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-text {
    font-size: 12px;
    color: var(--gray-500);
}

.stat-divider {
    display: none;
}

/* ==================== HERO FORM CARD ==================== */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.form-header h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 14px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    transition: var(--transition);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.form-benefit i {
    color: var(--success);
    font-size: 14px;
}

/* ==================== FEATURES ==================== */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    padding: 24px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==================== PROPERTY SEGMENTS - NEW DESIGN ==================== */
.gallery {
    padding: 60px 0;
    background: var(--gray-50);
}

.segments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.segment-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.segment-card-featured {
    border: 2px solid var(--primary);
}

.segment-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.segment-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.segment-card:hover .segment-image img {
    transform: scale(1.08);
}

.segment-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.segment-badge-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 50%, #D4AF37 100%);
    color: var(--gray-900);
}

.segment-body {
    padding: 24px;
}

.segment-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.segment-price-label {
    font-size: 14px;
    color: var(--gray-500);
}

.segment-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.segment-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.segment-area {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.segment-features {
    list-style: none;
    margin-bottom: 20px;
}

.segment-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.segment-features li i {
    color: var(--success);
    font-size: 12px;
    flex-shrink: 0;
}

.segment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.segment-card-featured .segment-btn {
    background: var(--primary);
    color: var(--white);
}

.segment-card-featured .segment-btn:hover {
    background: var(--primary-dark);
}

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

/* ==================== BENEFITS ==================== */
.benefits {
    padding: 60px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.benefit-card {
    position: relative;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    position: relative;
}

/* ==================== CITIZENSHIP ==================== */
.citizenship {
    padding: 60px 0;
    background: var(--gradient);
    color: var(--white);
}

.citizenship-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.citizenship-content h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.citizenship-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 24px;
}

.citizenship-list {
    list-style: none;
    margin-bottom: 28px;
}

.citizenship-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

.citizenship-list i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.citizenship-image {
    display: flex;
    justify-content: center;
}

.passport-card {
    position: relative;
    max-width: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.passport-card img {
    width: 100%;
}

.passport-badge {
    position: absolute;
    bottom: -12px;
    right: 16px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.badge-price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.badge-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PROCESS ==================== */
.process {
    padding: 60px 0;
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.process-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ==================== CONTACT FORM ==================== */
.contact {
    padding: 60px 0;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.channel i {
    font-size: 18px;
}

.channel:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.contact-form-wrapper {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    margin-bottom: 16px;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.form-group input.error {
    border-color: var(--error);
    animation: shake 0.4s ease;
}

.error-message {
    display: none;
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
}

.error-message.show {
    display: block;
}

.form-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 24px 0;
}

.radio-grid {
    display: grid;
    gap: 10px;
}

.radio-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.radio-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
    transition: var(--transition);
}

.radio-content i {
    font-size: 18px;
    color: var(--gray-400);
    transition: var(--transition);
}

.radio-card.compact .radio-content {
    flex-direction: row;
    justify-content: center;
    padding: 12px 8px;
}

.radio-card input:checked + .radio-content {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.radio-card input:checked + .radio-content i {
    color: var(--primary);
}

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
}

.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    padding: 32px;
}

.success-message.show {
    display: flex;
    animation: scaleIn 0.4s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-primary);
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

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

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-500);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-body {
    padding: 32px 24px;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 48px 0 24px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer .logo-mark {
    background: var(--white);
    color: var(--gray-900);
}

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

.footer-content p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-content a {
    color: var(--primary-light);
    font-weight: 500;
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-wrapper {
        flex-direction: row;
        gap: 48px;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-form-card {
        flex: 0 0 380px;
        padding: 32px;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-actions .btn {
        width: auto;
    }
    
    .hero-stats {
        display: inline-flex;
        gap: 32px;
        padding: 24px 36px;
    }
    
    .stat-divider {
        display: block;
        width: 1px;
        height: 36px;
        background: var(--gray-200);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .segment-image img {
        height: 180px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .citizenship-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .citizenship-content {
        flex: 1;
    }
    
    .citizenship-image {
        flex: 1;
        justify-content: flex-end;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info {
        flex: 1;
        position: sticky;
        top: 100px;
    }
    
    .contact-form-wrapper {
        flex: 1.2;
        padding: 36px;
    }
    
    .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .radio-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================== RESPONSIVE - DESKTOP ==================== */
@media (min-width: 1024px) {
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-form-card {
        flex: 0 0 420px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .segment-image img {
        height: 200px;
    }
    
    .segment-body {
        padding: 28px;
    }
    
    .segment-price-value {
        font-size: 36px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .citizenship-content h2 {
        font-size: 36px;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    
    .step-number {
        margin: 0 auto 16px;
    }
    
    .contact-info h2 {
        font-size: 36px;
    }
    
    .contact-form-wrapper {
        padding: 44px;
    }
}

/* ==================== RESPONSIVE - LARGE DESKTOP ==================== */
@media (min-width: 1280px) {
    .hero h1 {
        font-size: 58px;
    }
    
    .hero-stats {
        gap: 48px;
        padding: 28px 48px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ==================== ADDITIONAL STYLES ==================== */

/* Текст vi-estate в шапке */
.logo-text-only {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: 1px;
}

/* Белый цвет для €270 000 в блоке гражданства */
.text-white {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
}

/* Фото 16:9 в hero для мобильной версии */
.hero-image-mobile {
    display: block;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-mobile img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Скрываем hero-image-mobile на десктопе */
@media (min-width: 768px) {
    .hero-image-mobile {
        display: none;
    }
}

/* ==================== SOCIAL PROOF - СЧЕТЧИКИ ==================== */
.social-proof {
    padding: 60px 0;
    background: var(--gradient);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.proof-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.proof-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.proof-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== WHY US ==================== */
.why-us {
    padding: 60px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    padding: 28px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== CATALOG BANNER ==================== */
.catalog-banner {
    padding: 60px 0;
    background: var(--gray-900);
}

.catalog-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.catalog-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.catalog-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.catalog-text {
    text-align: center;
    color: var(--white);
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.catalog-badge i {
    color: #FFD700;
}

.catalog-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.catalog-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.catalog-text .btn {
    box-shadow: var(--shadow-primary);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-location {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==================== FAQ ==================== */
.faq {
    padding: 60px 0;
    background: var(--white);
}

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

.faq-item {
    margin-bottom: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-900);
    transition: var(--transition);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ==================== FOOTER UPDATES ==================== */
.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

/* ==================== RESPONSIVE FOR NEW SECTIONS ==================== */
@media (min-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .proof-number {
        font-size: 48px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalog-content {
        flex-direction: row;
        text-align: left;
        gap: 48px;
    }
    
    .catalog-image {
        flex: 1;
        max-width: none;
    }
    
    .catalog-text {
        flex: 1;
        text-align: left;
    }
    
    .catalog-text h3 {
        font-size: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .final-cta-content h2 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .proof-item {
        padding: 32px 24px;
    }
}
