/* Font Declarations */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('fonts/SourceSans3-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 120px;
    height: auto;
    margin-right: 1rem;
}

.brand {
    text-align: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 0;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #0077cc;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1px solid #0077cc;
    border-radius: 4px;
    background-color: transparent;
    color: #0077cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0077cc;
    color: #fff;
}

.btn-primary {
    background-color: #0077cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #005fa3;
    border-color: #005fa3;
}

/* Vision Brief Section */
.vision-brief {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.vision-brief .vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-brief p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vision-brief .btn {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    margin-bottom: 1rem;
    color: #0077cc;
}

.service-icon img {
    width: 48px;
    height: 48px;
    display: inline-block;
}

/* Services Detailed Page */
.services-detailed {
    padding: 5rem 0;
    background-color: #fff;
}

.service-detail {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail .service-icon {
    flex: 0 0 100px;
    margin-right: 2.5rem;
    text-align: center;
}

.service-detail .service-icon img {
    width: 64px;
    height: 64px;
    color: #0077cc;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 1.5rem;
    color: #0077cc;
}

.service-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background-color: #f5f5f5;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision Content */
.vision-content {
    padding: 5rem 0;
    background-color: #fff;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
}

.vision-section {
    margin-bottom: 3rem;
}

.vision-section:last-child {
    margin-bottom: 0;
}

.content-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    border-left: 4px solid #0077cc;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Payment Methods */
.payment-methods {
    padding: 5rem 0;
    background-color: #fff;
}

.cash-etransfer-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.payment-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.payment-category {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.category-title {
    background-color: #f1f1f1;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-content {
    padding: 1.5rem;
}

.payment-icon {
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.payment-icon img {
    width: 48px;
    height: 48px;
    display: inline-block;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.payment-item {
    text-align: center;
}

.crypto-note {
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
}

.discount-tag {
    font-size: 0.9rem;
    background-color: #4caf50;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: normal;
}

.fee-tag {
    font-size: 0.9rem;
    background-color: #f44336;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: normal;
}

.card-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.card-logos span {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-weight: 600;
}

.payment-info {
    margin-top: 3rem;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.payment-info h3 {
    margin-bottom: 1rem;
}

.payment-info ul {
    padding-left: 1.5rem;
}

.payment-info li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background-color: #0077cc;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005fa3;
}

/* Contact Info Section */
.contact-info {
    padding: 5rem 0;
    background-color: #fff;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0077cc;
}

.contact-card a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #333;
    color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0077cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .vision-content {
        padding: 3rem 0;
    }

    .cash-etransfer-row {
        grid-template-columns: 1fr;
    }

    .service-detail {
        flex-direction: column;
        text-align: center;
    }

    .service-detail .service-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

/* Accessibility and Print Styles */
@media print {
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    header, footer {
        display: none;
    }

    a {
        color: #000;
        text-decoration: none;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}