﻿:root {
    --royal-navy: #0A1931;
    --premium-gold: #D4AF37;
    --platinum: #E8E8E8;
    --deep-emerald: #1A535C;
    --crystal-white: #FFFFFF;
    --luxury-charcoal: #2D3047;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Royal Header - FIXED: Static positioning */
.royal-header {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--deep-emerald) 100%);
    color: var(--crystal-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .royal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }

.prestige-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--premium-gold) 0%, #B8860B 100%);
    color: var(--royal-navy);
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.royal-title {
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.royal-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Intro Section */
.company-intro {
    padding: 80px 0;
    background: var(--crystal-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--royal-navy);
    margin-bottom: 25px;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--luxury-charcoal);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--deep-emerald) 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal-white);
    font-size: 1.5rem;
    text-align: center;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Prestige Section */
.prestige-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.elegant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.prestige-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .prestige-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--premium-gold), var(--deep-emerald));
    }

    .prestige-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--premium-gold) 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--royal-navy);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.card-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.card-content {
    color: var(--luxury-charcoal);
    font-size: 1.2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.highlight-list {
    list-style: none;
    margin: 25px 0;
}

    .highlight-list li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        padding-left: 35px;
        font-weight: 500;
        font-size: 1.1rem;
    }

        .highlight-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--premium-gold);
            font-weight: bold;
            font-size: 1.4rem;
        }

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--deep-emerald) 100%);
    color: var(--crystal-white);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--premium-gold);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.3rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: var(--crystal-white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: 2.3rem;
    font-weight: 300;
    color: var(--royal-navy);
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
}

    .philosophy-quote::before,
    .philosophy-quote::after {
        content: '"';
        font-size: 4.5rem;
        color: var(--premium-gold);
        position: absolute;
        opacity: 0.3;
    }

    .philosophy-quote::before {
        top: -20px;
        left: -40px;
    }

    .philosophy-quote::after {
        bottom: -40px;
        right: -40px;
    }

.signature {
    font-size: 1.3rem;
    color: var(--deep-emerald);
    font-weight: 600;
    margin-top: 30px;
}

/* Validation Section */
.validation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.validation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.validation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.validation-title {
    font-size: 1.8rem;
    color: var(--royal-navy);
    margin-bottom: 25px;
}

.validation-desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.validation-list {
    list-style: none;
}

    .validation-list li {
        padding: 20px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1.2rem;
        position: relative;
        padding-left: 40px;
    }

        .validation-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--premium-gold);
            font-weight: bold;
            font-size: 1.5rem;
        }

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: var(--crystal-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

    .location-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

.location-icon {
    font-size: 3rem;
    color: var(--premium-gold);
    margin-bottom: 25px;
}

.location-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 15px;
}

.location-desc {
    color: var(--luxury-charcoal);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .elegant-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .validation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .royal-title {
        font-size: 2.8rem;
    }

    .royal-subtitle {
        font-size: 1.3rem;
    }

    .prestige-section,
    .philosophy-section {
        padding: 60px 0;
    }

    .prestige-card {
        padding: 40px 30px;
    }

    .philosophy-quote {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .highlight-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .royal-title {
        font-size: 2.3rem;
    }

    .prestige-badge {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-quote::before {
        left: -20px;
    }

    .philosophy-quote::after {
        right: -20px;
    }

    .card-content {
        font-size: 1.1rem;
    }
}
