/* Local Fonts */
@font-face {
    font-family: 'Playfair Display';
    src: url('assets/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('assets/fonts/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Songti';
    src: url('assets/fonts/Songti.ttc') format('truetype-collection');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a1a;
    --secondary-beige: #d4c4a8;
    --accent-gold: #B8860B;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-beige: #e8dcc4;
}

body {
    font-family: 'Songti', 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 300;
}

body[lang="en"] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Songti', 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

body[lang="en"] h1,
body[lang="en"] h2,
body[lang="en"] h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--text-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--text-dark);
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.lang-toggle:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
}

/* Page Container */
.page {
    display: none;
    margin-top: 70px;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect fill="%231a1a1a" width="1200" height="500"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

body[lang="en"] .hero-title {
    font-weight: 300;
    letter-spacing: 0;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
}

/* Credit Hero */
.credit-hero {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
    height: 600px;
}

.credit-card-visual {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #f4d03f 0%, #e6b800 100%);
    border-radius: 15px;
    margin: 2rem auto 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
}

.credit-card-visual::before {
    content: 'VISA';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    color: rgba(0,0,0,0.3);
    font-style: italic;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.section-title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: 0.5px;
}

body[lang="en"] .section-title {
    font-weight: 300;
    letter-spacing: 0;
}

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

.section-title.centered {
    text-align: center;
}

.section-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

body[lang="en"] .section-text {
    font-weight: 400;
    line-height: 1.8;
}

.section-text.light {
    color: rgba(255,255,255,0.9);
}

.section-text.centered {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.two-column.bg-beige {
    background: var(--bg-beige);
    padding: 4rem;
    border-radius: 8px;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.img-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 4px;
    min-height: 200px;
}

.img-placeholder.img-tall {
    grid-row: span 2;
    min-height: 420px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.services-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.service-item {
    text-align: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 400;
}

body[lang="en"] .service-title {
    font-weight: 400;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

body[lang="en"] .service-text {
    font-weight: 400;
}

/* Meeting Section */
.meeting-section {
    padding: 0;
}

.meeting-image {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    background-size: cover;
    background-position: center;
}

/* Asset Growth Section */
.asset-growth {
    background: var(--primary-dark);
    color: white;
}

/* Regulatory Section */
.regulatory {
    background: var(--bg-light);
}

.regulatory-text {
    margin-top: 3rem;
}

.regulatory-text p {
    margin-bottom: 1.5rem;
}

.image-placeholder.handshake {
    min-height: 300px;
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
}

/* Wealth Partner */
.wealth-partner {
    background: var(--bg-light);
}

/* Feedback Section */
.feedback {
    background: var(--bg-light);
    padding: 4rem 0;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feedback-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 300;
}

.service-time h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.service-time p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

body[lang="en"] .service-time p {
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background: #9a6f0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    color: white;
}

.cta-button.dark {
    background: var(--primary-dark);
}

.cta-button.dark:hover {
    background: #000;
}

/* About Page - Compliance Section */
.compliance-section {
    background: var(--bg-light);
}

.quote-icon {
    display: flex;
    justify-content: flex-end;
}

/* Services Section */
.services-section {
    background: white;
}

/* Advantages Section */
.advantages-section {
    background: var(--bg-light);
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.advantage-item.reverse {
    direction: rtl;
}

.advantage-item.reverse > * {
    direction: ltr;
}

.advantage-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: 0.5px;
}

body[lang="en"] .advantage-title {
    letter-spacing: 0;
}

.advantage-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

body[lang="en"] .advantage-text {
    font-weight: 400;
    line-height: 1.8;
}

.img-placeholder.team-img,
.img-placeholder.hands-img,
.img-placeholder.writing-img {
    min-height: 350px;
    background: linear-gradient(135deg, #d5d5d5 0%, #b0b0b0 100%);
}

/* Compliance Foundation */
.compliance-foundation {
    background: white;
}

.img-placeholder.conversation-img {
    min-height: 400px;
    background: linear-gradient(135deg, #d8d8d8 0%, #b5b5b5 100%);
}

/* Regulatory Adherence */
.regulatory-adherence {
    background: var(--bg-light);
}

.img-placeholder.building-img {
    min-height: 350px;
    background: linear-gradient(135deg, #c8c8c8 0%, #a8a8a8 100%);
}

/* Credit Card Page */
.card-intro {
    background: var(--bg-beige);
    padding: 3rem 0;
}

.intro-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
}

.intro-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 300;
}

body[lang="en"] .intro-box p {
    font-weight: 400;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: left;
}

.feature-image {
    height: 250px;
    background: linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-image.payment-img {
    background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
}

.feature-image.global-img {
    background: linear-gradient(135deg, #ce93d8 0%, #ba68c8 100%);
}

.feature-image.instant-img {
    background: linear-gradient(135deg, #ffcc80 0%, #ffb74d 100%);
}

.feature-image.flexible-img {
    background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 400;
}

body[lang="en"] .feature-title {
    font-weight: 400;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

body[lang="en"] .feature-text {
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--primary-dark);
    transition: background 0.3s;
}

body[lang="en"] .faq-question {
    font-weight: 400;
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer ul {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    padding: 3rem 0;
}

.contact-main-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: 0.5px;
}

body[lang="en"] .contact-main-title {
    letter-spacing: 0;
}

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

.team-image {
    height: 400px;
    background: linear-gradient(135deg, #d5d5d5 0%, #b0b0b0 100%);
    border-radius: 8px;
}

.contact-hours {
    background: var(--bg-beige);
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 300;
}

.hours-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 300;
}

body[lang="en"] .hours-text {
    font-weight: 400;
    line-height: 1.8;
}

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

.form-content {
    background: var(--primary-dark);
    padding: 3rem;
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.form-description {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

body[lang="en"] .form-description {
    font-weight: 400;
    line-height: 1.8;
}

.building-image {
    height: 500px;
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    border-radius: 8px;
}

.bottom-feedback {
    margin-top: 0;
}

/* Privacy Page */
.privacy-section {
    background: white;
    padding: 5rem 0;
}

.privacy-container {
    max-width: 1000px;
}

.privacy-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: left;
}

.privacy-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.privacy-content {
    margin-top: 3rem;
}

.privacy-item {
    margin-bottom: 3rem;
}

.privacy-item h2 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.privacy-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.privacy-item ul,
.privacy-item ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-item li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column,
    .contact-grid,
    .contact-form-section,
    .advantage-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .feedback-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid.four-col {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .credit-card-visual {
        width: 280px;
        height: 180px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.section {
    animation: fadeIn 0.6s ease-out;
}

/* Image Styles */
.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.grid-img-tall {
    min-height: 420px;
}

.full-width-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.advantage-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hero Background Images */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/images/1-1-material@2x.png');
}

.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/images/2-1-material@2x.png');
}

.credit-hero {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/3-2-material@2x.png');
}

/* Credit Card Visual */
.credit-card-visual {
    background-image: url('assets/images/3-1-material@2x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.credit-card-visual::before {
    display: none;
}

/* Feature Image Styles */
.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Contact Page Image Styles */
.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.building-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}
