:root {
    --primary-bg: #816e4e;
    --secondary-bg: #10231D;
    --accent-gold: #D4AF37;
    --text-light: #f5f5f5;
    --transition-standard: all 0.5s ease-in-out;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.rtl-mode {
    font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
}

.rtl-mode h1, 
.rtl-mode h2, 
.rtl-mode h3, 
.rtl-mode .serif-title, 
.rtl-mode .brand-name,
.rtl-mode .quote {
    font-family: 'Amiri', serif;
}

.zh-mode {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
    line-height: 1.8;
}

.zh-mode h1, 
.zh-mode h2, 
.zh-mode h3, 
.zh-mode .serif-title, 
.zh-mode .brand-name,
.zh-mode .quote {
    font-family: 'Noto Serif SC', serif;
}

h1, h2, h3, .serif-title, .brand-name {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-logo {
    width: 100px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

@media (min-width: 768px) {
    .loader-logo {
        width: 120px;
    }
}

.loader-bar {
    width: 160px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .loader-bar {
        width: 200px;
    }
}

.loader-progress {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--accent-gold);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 35, 29, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    height: 80px;
    transition: height 0.3s ease;
}

@media (min-width: 1024px) {
    .main-header {
        height: 96px;
    }
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 48px;
}

@media (min-width: 768px) {
    .nav-logo {
        height: 60px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    white-space: nowrap;
}

[dir="rtl"] .brand-name {
    letter-spacing: 0;
}

.zh-mode .brand-name {
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 1.25rem;
        letter-spacing: 0.2em;
    }
    [dir="rtl"] .brand-name {
        letter-spacing: 0;
        font-size: 1.5rem;
    }
    .zh-mode .brand-name {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }
}

.brand-sub {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
}

[dir="rtl"] .brand-sub {
    letter-spacing: 0;
}

.zh-mode .brand-sub {
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .brand-sub {
        font-size: 10px;
        letter-spacing: 0.2em;
    }
    [dir="rtl"] .brand-sub {
        letter-spacing: 0.1em;
        font-size: 11px;
    }
    .zh-mode .brand-sub {
        font-size: 11px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .header-right {
        gap: 1.5rem;
    }
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    text-decoration: none;
    color: rgba(245, 245, 245, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-standard);
}

[dir="rtl"] .desktop-nav a {
    letter-spacing: 0.1em;
    font-size: 14px;
}

.zh-mode .desktop-nav a {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.desktop-nav a:hover {
    color: var(--accent-gold);
}

/* Language Switcher */
.lang-btn {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition-standard);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.lang-btn i {
    width: 16px;
    height: 16px;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

@media (max-width: 480px) {
    .lang-label { display: none; }
    .lang-btn { padding: 0.5rem; }
}

.lang-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(212, 175, 55, 0.1);
}

.lang-option {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--secondary-bg);
    text-decoration: none;
    transition: var(--transition-standard);
    text-align: center;
}

.lang-option:hover {
    background: #162f27;
}

.lang-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.25rem;
}

[dir="rtl"] .lang-name {
    font-family: 'Amiri', serif;
}

.zh-mode .lang-name {
    font-family: 'Noto Serif SC', serif;
}

.lang-native {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    opacity: 0.8;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    display: block;
    padding: 0.25rem;
}

@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

/* Sidebar */
.sidebar {
    position: fixed;
    inset: 0;
    background: var(--secondary-bg);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[dir="rtl"] .sidebar {
    transform: translateX(-100%);
}

.sidebar.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    padding: 0.5rem;
}

[dir="rtl"] .close-btn {
    right: auto;
    left: 1.5rem;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    text-decoration: none;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 0.75rem;
}

[dir="rtl"] .sidebar-link {
    font-family: 'Amiri', serif;
    font-size: 2rem;
}

.zh-mode .sidebar-link {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

@media (min-width: 1024px) {
    .hero {
        height: 85vh;
        min-height: auto;
        padding-top: 0;
    }
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
}

[dir="rtl"] .hero-bg-wrapper {
    justify-content: flex-start;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(0.2);
    animation: slowPanZoom 20s infinite ease-in-out;
}

@media (min-width: 1024px) {
    .hero-image {
        width: auto;
        object-fit: contain;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--secondary-bg) 10%, rgba(16, 35, 29, 0.7) 50%, var(--secondary-bg) 95%);
}

@media (min-width: 1024px) {
    .hero-overlay {
        background: linear-gradient(to right, #10231D 20%, rgba(16, 35, 29, 0.7) 50%, transparent 100%);
    }
    [dir="rtl"] .hero-overlay {
        background: linear-gradient(to left, #10231D 20%, rgba(16, 35, 29, 0.7) 50%, transparent 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.institutional-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 9px;
    font-weight: bold;
    margin-bottom: 1rem;
}

[dir="rtl"] .institutional-label {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .institutional-label {
    font-size: 14px;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .institutional-label {
        gap: 1rem;
        letter-spacing: 0.4em;
        font-size: 11px;
        margin-bottom: 1.5rem;
    }
    [dir="rtl"] .institutional-label {
        letter-spacing: 0;
        font-size: 16px;
    }
    .zh-mode .institutional-label {
        font-size: 16px;
    }
}

.accent-line {
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

@media (min-width: 768px) {
    .accent-line {
        width: 40px;
    }
}

.hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

[dir="rtl"] .hero-title {
    font-size: 2.2rem;
    line-height: 1.4;
}

.zh-mode .hero-title {
    font-size: 2.4rem;
    line-height: 1.4;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    [dir="rtl"] .hero-title {
        font-size: 2.8rem;
    }
    .zh-mode .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    [dir="rtl"] .hero-title {
        font-size: 3.8rem;
    }
    .zh-mode .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    [dir="rtl"] .hero-title {
        font-size: 4.8rem;
    }
    .zh-mode .hero-title {
        font-size: 5rem;
    }
}

.professional-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .professional-credentials {
        gap: 0.75rem;
        margin-bottom: 3rem;
    }
}

.credential-item {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
    font-weight: 500;
}

[dir="rtl"] .credential-item {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .credential-item {
    font-size: 14px;
    letter-spacing: 0.05em;
}

.credential-item::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--accent-gold);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .credential-item {
        font-size: 11px;
        letter-spacing: 0.25em;
        gap: 1rem;
    }
    [dir="rtl"] .credential-item {
        font-size: 16px;
        letter-spacing: 0;
    }
    .zh-mode .credential-item {
        font-size: 16px;
    }
    .credential-item::before {
        width: 8px;
    }
}

.cta-btn {
    background: var(--accent-gold);
    color: var(--secondary-bg);
    border: none;
    padding: 1rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-standard);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 11px;
    width: 100%;
}

[dir="rtl"] .cta-btn {
    letter-spacing: 0;
    font-size: 16px;
}

.zh-mode .cta-btn {
    font-size: 16px;
    letter-spacing: 0.1em;
}

@media (min-width: 480px) {
    .cta-btn {
        width: auto;
        padding: 1.25rem 2.5rem;
        letter-spacing: 0.2em;
        font-size: 12px;
    }
    [dir="rtl"] .cta-btn {
        letter-spacing: 0;
        font-size: 18px;
    }
    .zh-mode .cta-btn {
        font-size: 18px;
    }
}

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

/* Services */
.services-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

@media (min-width: 768px) {
    .services-section {
        padding: 10rem 0;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 6rem;
    }
}

.sub-label {
    color: var(--secondary-bg);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

[dir="rtl"] .sub-label {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .sub-label {
    font-size: 14px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .sub-label {
        letter-spacing: 0.3em;
        font-size: 11px;
        margin-bottom: 1rem;
    }
    [dir="rtl"] .sub-label {
        font-size: 16px;
    }
    .zh-mode .sub-label {
        font-size: 16px;
    }
}

.serif-title {
    font-size: 2rem;
    color: white;
}

[dir="rtl"] .serif-title {
    font-size: 2.5rem;
}

.zh-mode .serif-title {
    font-size: 2.8rem;
}

@media (min-width: 768px) {
    .serif-title {
        font-size: 3rem;
    }
    [dir="rtl"] .serif-title {
        font-size: 3.5rem;
    }
    .zh-mode .serif-title {
        font-size: 3.8rem;
    }
}

.header-desc {
    font-style: italic;
    font-size: 13px;
    max-width: 100%;
    border-left: 1px solid rgba(16, 35, 29, 0.2);
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

[dir="rtl"] .header-desc {
    border-left: none;
    border-right: 1px solid rgba(16, 35, 29, 0.2);
    padding-left: 0;
    padding-right: 1rem;
    font-size: 16px;
}

.zh-mode .header-desc {
    border-left: 2px solid rgba(16, 35, 29, 0.3);
    padding-left: 1rem;
    font-size: 16px;
}

@media (min-width: 768px) {
    .header-desc {
        font-size: 14px;
        max-width: 300px;
        padding-left: 1.5rem;
    }
    [dir="rtl"] .header-desc {
        padding-right: 1.5rem;
        font-size: 16px;
    }
    .zh-mode .header-desc {
        padding-left: 1.5rem;
        font-size: 16px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(16, 35, 29, 0.1);
    border: 1px solid rgba(16, 35, 29, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--secondary-bg);
    padding: 2.5rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-standard);
}

@media (min-width: 768px) {
    .service-card {
        padding: 4rem;
    }
}

.service-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-standard);
}

@media (min-width: 768px) {
    .service-icon {
        margin-bottom: 2rem;
    }
}

.service-card:hover .service-icon {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

[dir="rtl"] .service-card h3 {
    font-size: 1.6rem;
}

.zh-mode .service-card h3 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    [dir="rtl"] .service-card h3 {
        font-size: 1.8rem;
    }
    .zh-mode .service-card h3 {
        font-size: 2rem;
    }
}

.service-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

[dir="rtl"] .service-card p {
    font-size: 15px;
}

.zh-mode .service-card p {
    font-size: 15px;
}

@media (min-width: 768px) {
    .service-card p {
        font-size: 14px;
    }
    [dir="rtl"] .service-card p {
        font-size: 16px;
    }
    .zh-mode .service-card p {
        font-size: 16px;
    }
}

.engagement-link {
    margin-top: 2rem;
    color: var(--accent-gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition-standard);
}

[dir="rtl"] .engagement-link {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .engagement-link {
    font-size: 14px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .engagement-link {
        margin-top: 2.5rem;
        font-size: 11px;
        letter-spacing: 0.2em;
        gap: 0.75rem;
        opacity: 0;
        transform: translateX(-10px);
    }
    [dir="rtl"] .engagement-link {
        transform: translateX(10px);
    }
    .zh-mode .engagement-link {
        transform: translateX(-10px);
    }
    .service-card:hover .engagement-link {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Philosophy */
.philosophy {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

@media (min-width: 768px) {
    .philosophy {
        padding: 10rem 0;
    }
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    max-width: 100%;
    margin: 2.5rem auto;
    color: rgba(255, 255, 255, 0.9);
}

[dir="rtl"] .quote {
    font-size: 2rem;
    line-height: 1.6;
}

.zh-mode .quote {
    font-size: 2.2rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .quote {
        font-size: 2.5rem;
        line-height: 1.6;
        margin: 4rem auto;
        max-width: 900px;
    }
    [dir="rtl"] .quote {
        font-size: 3rem;
        max-width: 1000px;
    }
    .zh-mode .quote {
        font-size: 3.2rem;
        max-width: 1000px;
    }
}

.counsel-name {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    font-size: 9px;
    font-weight: bold;
}

[dir="rtl"] .counsel-name {
    letter-spacing: 0;
    font-size: 16px;
}

.zh-mode .counsel-name {
    letter-spacing: 0.2em;
    font-size: 16px;
}

@media (min-width: 768px) {
    .counsel-name {
        letter-spacing: 0.5em;
        font-size: 11px;
    }
    [dir="rtl"] .counsel-name {
        font-size: 18px;
    }
    .zh-mode .counsel-name {
        font-size: 18px;
    }
}

.vertical-divider {
    height: 30px;
    width: 1px;
    background: rgba(212, 175, 55, 0.4);
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .vertical-divider {
        height: 50px;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 35, 29, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .modal-overlay {
        padding: 1.5rem;
    }
}

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

.modal-content {
    background: var(--secondary-bg);
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    max-height: 100%;
    overflow-y: auto;
}

.small-modal {
    max-width: 400px;
}

@media (min-width: 768px) {
    .modal-content {
        max-height: 90vh;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-bg);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 1rem;
}

.modal-body {
    padding: 2.5rem 1.25rem;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 4rem;
    }
}

.modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-header.centered {
    text-align: center;
}

@media (min-width: 768px) {
    .modal-header {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

.modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

[dir="rtl"] .modal-header h2 {
    font-size: 2rem;
}

.zh-mode .modal-header h2 {
    font-size: 2.2rem;
}

@media (min-width: 768px) {
    .modal-header h2 {
        font-size: 2.5rem;
    }
    [dir="rtl"] .modal-header h2 {
        font-size: 2.8rem;
    }
    .zh-mode .modal-header h2 {
        font-size: 3rem;
    }
}

.modal-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    font-weight: bold;
}

[dir="rtl"] .modal-subtitle {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .modal-subtitle {
    letter-spacing: 0.1em;
    font-size: 14px;
}

@media (min-width: 768px) {
    .modal-subtitle {
        letter-spacing: 0.3em;
        font-size: 11px;
    }
    [dir="rtl"] .modal-subtitle {
        font-size: 16px;
    }
    .zh-mode .modal-subtitle {
        font-size: 16px;
    }
}

.modal-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

[dir="rtl"] .modal-description {
    font-size: 16px;
}

.zh-mode .modal-description {
    font-size: 16px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.input-group label {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.15em;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

[dir="rtl"] .input-group label {
    letter-spacing: 0;
    font-size: 14px;
}

.zh-mode .input-group label {
    font-size: 14px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .input-group label {
        font-size: 10px;
        letter-spacing: 0.2em;
        margin-bottom: 0.75rem;
    }
    [dir="rtl"] .input-group label {
        font-size: 15px;
    }
    .zh-mode .input-group label {
        font-size: 15px;
    }
}

.input-group input, .input-group textarea {
    width: 100%;
    background: #162f27;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.875rem;
    color: white;
    outline: none;
    transition: var(--transition-standard);
    font-size: 14px;
}

[dir="rtl"] .input-group input, [dir="rtl"] .input-group textarea {
    font-size: 16px;
}

.zh-mode .input-group input, .zh-mode .input-group textarea {
    font-size: 16px;
}

@media (min-width: 768px) {
    .input-group input, .input-group textarea {
        padding: 1rem;
    }
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--accent-gold);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .form-actions {
        flex-direction: row;
        gap: 1rem;
        margin-top: 2rem;
    }
}

.submit-btn {
    flex: 1;
    background: var(--accent-gold);
    color: var(--secondary-bg);
    border: none;
    padding: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    font-size: 11px;
}

[dir="rtl"] .submit-btn {
    letter-spacing: 0;
    font-size: 18px;
}

.zh-mode .submit-btn {
    font-size: 18px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .submit-btn {
        padding: 1.25rem;
        letter-spacing: 0.2em;
    }
}

.whatsapp-btn {
    flex: 1;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
    padding: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 11px;
}

[dir="rtl"] .whatsapp-btn {
    letter-spacing: 0;
    font-size: 18px;
}

.zh-mode .whatsapp-btn {
    font-size: 18px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .whatsapp-btn {
        padding: 1.25rem;
        letter-spacing: 0.2em;
    }
}

/* Luxury Lines */
.luxury-line-v {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: var(--accent-gold);
    opacity: 0.3;
    z-index: 20;
    display: none;
}

@media (min-width: 1024px) {
    .luxury-line-v {
        display: block;
    }
}

.luxury-line-v.left { left: 40px; }
.luxury-line-v.right { right: 40px; }

/* Animations */
@keyframes slowPanZoom {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-0.5%); }
    100% { transform: scale(1) translateY(0); }
}

/* Footer */
.main-footer {
    background: var(--secondary-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 768px) {
    .main-footer {
        padding: 6rem 0 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
        margin-bottom: 6rem;
    }
}

.footer-logo { 
    height: 60px; 
    margin-bottom: 1.5rem; 
}

@media (min-width: 768px) {
    .footer-logo {
        height: 80px;
        margin-bottom: 2rem;
    }
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 13px; max-width: 100%; }
[dir="rtl"] .footer-brand p { font-size: 16px; }
.zh-mode .footer-brand p { font-size: 16px; }

@media (min-width: 768px) {
    .footer-brand p {
        font-size: 14px;
        max-width: 300px;
    }
    [dir="rtl"] .footer-brand p { font-size: 16px; }
    .zh-mode .footer-brand p { font-size: 16px; }
}

.footer-nav h4, .footer-contact h4 { color: var(--accent-gold); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
[dir="rtl"] .footer-nav h4, [dir="rtl"] .footer-contact h4 { letter-spacing: 0; font-size: 16px; }
.zh-mode .footer-nav h4, .zh-mode .footer-contact h4 { letter-spacing: 0.1em; font-size: 16px; }

@media (min-width: 768px) {
    .footer-nav h4, .footer-contact h4 {
        font-size: 11px;
        letter-spacing: 0.3em;
        margin-bottom: 2rem;
    }
    [dir="rtl"] .footer-nav h4, [dir="rtl"] .footer-contact h4 { font-size: 18px; }
    .zh-mode .footer-nav h4, .zh-mode .footer-contact h4 { font-size: 18px; }
}

.footer-nav a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 0.5rem; font-size: 13px; }
[dir="rtl"] .footer-nav a { font-size: 15px; }
.zh-mode .footer-nav a { font-size: 15px; }

@media (min-width: 768px) {
    .footer-nav a {
        margin-bottom: 0.75rem;
        font-size: 14px;
    }
    [dir="rtl"] .footer-nav a { font-size: 16px; }
    .zh-mode .footer-nav a { font-size: 16px; }
}

.footer-contact p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 0.4rem; }
[dir="rtl"] .footer-contact p { font-size: 15px; }
.zh-mode .footer-contact p { font-size: 15px; }

@media (min-width: 768px) {
    .footer-contact p {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
}

[dir="rtl"] .footer-bottom { letter-spacing: 0; font-size: 12px; }
.zh-mode .footer-bottom { letter-spacing: 0.1em; font-size: 12px; }

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        text-align: left;
        font-size: 10px;
        letter-spacing: 0.2em;
    }
    [dir="rtl"] .footer-bottom { text-align: right; font-size: 14px; }
    .zh-mode .footer-bottom { text-align: left; font-size: 14px; }
}

.footer-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-tags {
        gap: 0;
    }
    .footer-tags span { margin-left: 2rem; font-style: italic; }
    [dir="rtl"] .footer-tags span { margin-left: 0; margin-right: 2rem; }
    .zh-mode .footer-tags span { margin-left: 2rem; }
}

.strategy-section { padding: 6rem 0; }
@media (min-width: 768px) { .strategy-section { padding: 8rem 0; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }

.step-item { display: flex; gap: 1.5rem; border-bottom: 1px solid rgba(16, 35, 29, 0.1); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) {
    .step-item {
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

.step-num { font-family: 'Playfair Display'; font-size: 1.5rem; color: var(--accent-gold); opacity: 0.4; flex-shrink: 0; }
[dir="rtl"] .step-num { font-family: 'Amiri'; font-size: 2rem; }
.zh-mode .step-num { font-family: 'Noto Serif SC'; font-size: 2rem; }

@media (min-width: 768px) { .step-num { font-size: 2rem; } [dir="rtl"] .step-num { font-size: 2.5rem; } .zh-mode .step-num { font-size: 2.5rem; } }

.step-item h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.4rem; }
[dir="rtl"] .step-item h3 { font-size: 1.4rem; }
.zh-mode .step-item h3 { font-size: 1.6rem; }

@media (min-width: 768px) { .step-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; } [dir="rtl"] .step-item h3 { font-size: 1.6rem; } .zh-mode .step-item h3 { font-size: 1.8rem; } }

.step-item p { font-size: 13px; color: rgba(255,255,255,0.6); }
[dir="rtl"] .step-item p { font-size: 15px; }
.zh-mode .step-item p { font-size: 15px; }

@media (min-width: 768px) { .step-item p { font-size: 14px; } [dir="rtl"] .step-item p { font-size: 16px; } .zh-mode .step-item p { font-size: 16px; } }

.image-frame { position: relative; border: 1px solid rgba(212, 175, 55, 0.2); }
.image-frame img { width: 100%; grayscale: 100%; brightness: 50%; display: block; }
.quote-overlay { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(16, 35, 29, 0.9); padding: 1.25rem; border-left: 3px solid var(--accent-gold); }
[dir="rtl"] .quote-overlay { border-left: none; border-right: 3px solid var(--accent-gold); }

@media (min-width: 768px) {
    .quote-overlay {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        padding: 2rem;
        border-left-width: 4px;
    }
    [dir="rtl"] .quote-overlay { border-right-width: 4px; }
}
.quote-overlay p {
    font-size: 14px;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .quote-overlay p {
        font-size: 18px;
    }
}