/* Color Scheme: Navy Blue & Beige (Old Money Aesthetic) */
:root {
    --navy-primary: #1a2a3a;
    --navy-dark: #0f1a27;
    --navy-light: #2d4059;
    --beige-primary: #e8dcc4;
    --beige-light: #f5f0e8;
    --beige-dark: #d4c5a9;
    --gold-accent: #c9a961;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--beige-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--navy-primary);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--beige-primary);
    letter-spacing: 2px;
}

.cta-btn-nav {
    background-color: var(--gold-accent);
    color: var(--navy-dark);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.cta-btn-nav:hover {
    background-color: var(--beige-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    padding: 180px 0 120px;
    margin-top: 68px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(232,220,196,0.03)" width="50" height="50"/></svg>');
    background-size: 100px 100px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--beige-light);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--beige-primary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-btn-primary {
    background-color: var(--gold-accent);
    color: var(--navy-dark);
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.cta-btn-primary:hover {
    background-color: var(--beige-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.4);
}

/* Trust Section */
.trust-section {
    background-color: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--beige-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--beige-dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 58, 0.1);
    border-color: var(--gold-accent);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--beige-light);
    border-radius: 8px;
    border: 2px solid var(--beige-dark);
    min-width: 250px;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.step-arrow {
    font-size: 32px;
    color: var(--gold-accent);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--beige-light);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--beige-primary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    padding: 50px 0 30px;
    color: var(--beige-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--beige-dark);
    font-style: italic;
}

.footer-info {
    font-size: 14px;
    color: var(--beige-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 58, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--navy-primary);
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    padding: 40px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    color: var(--beige-light);
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 16px;
    color: var(--beige-primary);
}

.contact-options {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 24px;
    background-color: var(--beige-light);
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--beige-dark);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background-color: var(--white);
    border-color: var(--gold-accent);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(26, 42, 58, 0.1);
}

.contact-icon {
    font-size: 36px;
    margin-right: 20px;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
}

.modal-footer {
    background-color: var(--beige-light);
    padding: 20px 40px;
    text-align: center;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid var(--beige-dark);
}

.modal-footer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% 20px;
    }
    
    .contact-options {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .cta-btn-primary {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
