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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* CRITICAL: Force visibility of all key elements */
.service-card,
.offer-item,
.value-item,
.contact-item,
.contact-form,
.image-placeholder,
.cta-button,
.secondary-button,
.btn-primary,
.btn-secondary,
.submit-btn,
.award-button,
.hero-cta-button {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

.service-card,
.offer-item,
.value-item,
.contact-item {
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 1rem !important;
}

.image-placeholder {
    background: linear-gradient(135deg, #112229 0%, #1a365d 100%) !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    min-height: 200px !important;
}

.cta-button,
.btn-primary,
.hero-cta-button {
    display: inline-block !important;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%) !important;
    color: white !important;
    padding: 15px 35px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-secondary {
    display: inline-block !important;
    background: transparent !important;
    color: #2c5aa0 !important;
    padding: 12px 30px !important;
    text-decoration: none !important;
    border: 2px solid #2c5aa0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.submit-btn {
    display: inline-block !important;
    background: #112229 !important;
    color: white !important;
    padding: 15px 35px !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

/* Section Separation Styles */
.section-shadow {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border-radius: 0;
    position: relative;
}

.section-shadow:last-child {
    margin-bottom: 0;
}

/* Enhanced Visual Improvements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Enhanced Typography */
.section-subtitle {
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #112229, #2c5aa0);
    border-radius: 2px;
}

/* Global Section Box Styling - Applied to all sections for visual consistency */
.offer,
.why-partner,
.faq-section,
.how-we-work,
.banking-section,
.about-us-section,
.family-office,
.vision-section,
.values-section,
.network-section,
.clients-section {
    background: white;
    padding: 6rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

/* Investing page sections */
.offer .offer-item,
.value-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.offer .offer-item:hover,
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #112229;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #D4AF37;
}

h3 {
    font-size: 1.8rem;
    color: #40E0D0;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: #E0E7EA;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block !important;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%) !important;
    color: white !important;
    padding: 15px 35px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(28, 53, 93, 0.3);
}

.secondary-button {
    display: inline-block !important;
    background: transparent !important;
    color: #2c5aa0 !important;
    padding: 12px 30px !important;
    text-decoration: none !important;
    border: 2px solid #2c5aa0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.secondary-button:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #112229 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: #112229;
}

.nav-menu {
    display: flex;
}

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

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

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #D4AF37;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header.scrolled .language-toggle {
    border-color: rgba(17, 34, 41, 0.2);
    color: #112229;
}

.language-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.header.scrolled .language-toggle:hover {
    background: rgba(17, 34, 41, 0.1);
    border-color: #112229;
}

.current-lang {
    font-weight: 600;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #112229;
}
}

nav .nav-link, .nav-link {
    text-decoration: none !important;
    color: #D4AF37 !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

/* Ensure navigation links match logo color exactly */
.nav-list .nav-link {
    color: #D4AF37 !important;
}

/* Override any browser defaults or conflicting styles */
a.nav-link, a.nav-link:link, a.nav-link:visited {
    color: #D4AF37 !important;
}

.nav-link:hover {
    color: #40E0D0 !important;
    border-bottom: 1px solid #40E0D0;
}

.header.scrolled .nav-link {
    color: #112229 !important;
}

.header.scrolled .nav-link:hover {
    color: #112229 !important;
    border-bottom: 1px solid #112229;
}

.contact-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #0F2027 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    color: white !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 150px 0 100px;
}

.hero-text-box {
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 3rem;
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInRight 1s ease-out;
}

.hero-text-box h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #0F2027;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h3 {
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    background: white;
    padding: 6rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
    border-radius: 0;
}

.services .section-header h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.services .section-header h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.services .section-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-top: 4rem !important;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.service-card {
    background: white !important;
    padding: 2.5rem 2rem !important;
    border-radius: 12px !important;
    text-align: left !important;
    transition: all 0.4s ease !important;
    border: 1px solid #e9ecef !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    min-height: 200px !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #112229, #2c5aa0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #112229;
}

.service-card h4 {
    color: #333 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card p {
    color: #666 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-button {
    display: inline-block;
    background: #112229;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #2c5aa0;
    transform: translateY(-1px);
}

/* Old service styles removed - replaced with new Alpen Partners style above */

/* Partners Section */
.partners {
    background: white;
    padding: 6rem 0 3rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.partners-content {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.partners-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.partners-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Marquee Animation */
.partners-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-logos {
    display: flex;
    gap: 4rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.partner-logo {
    color: #112229 !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    opacity: 0.8 !important;
    transition: all 0.4s ease !important;
    flex-shrink: 0 !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    display: block !important;
    visibility: visible !important;
}

.partner-logo:hover {
    opacity: 1;
    background: rgba(17, 34, 41, 0.05);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-marquee:hover .partners-logos {
    animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .partners-text h3 {
        font-size: 1.8rem;
    }
    
    .partners-logos {
        gap: 3rem;
    }
}

/* Team Section */
.team {
    background: white;
    padding: 6rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.team-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.team-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.team-grid {
  
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.team-member {
    background: white !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    padding: 2rem !important;
    text-align: center !important;
    border: 1px solid #e9ecef !important;
    min-height: 120px !important;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.team-member h4 {
    color: #112229 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.5rem 0 !important;
    text-align: center !important;
}

.team-member p {
    color: #D4AF37 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    font-weight: 500 !important;
    text-align: center !important;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-text h3 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        height: 300px;
    }
}

/* Awards Section */
.awards {
    background: white;
    padding: 6rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.award-graphic {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.award-badge {
    color: white;
    position: relative;
    z-index: 2;
}

.award-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.award-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #888, #ddd);
    border-radius: 50%;
    position: relative;
}

.logo-circle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #666, #999);
    border-radius: 50%;
}

.logo-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.award-year {
    color: #ff4444;
    font-weight: 700;
    font-size: 1rem;
}

.award-status {
    margin-bottom: 1.5rem;
}

.winner-badge {
    background: #ff4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.award-category {
    color: #ccc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.award-recipient {
    color: #ccc;
    font-size: 0.9rem;
}

.award-trophy {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 150px;
}

.trophy-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(45deg, #cd7f32, #ffd700);
    border-radius: 10px;
}

.trophy-cup {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 40px 40px 20px 20px;
    box-shadow: inset -10px 0 20px rgba(0,0,0,0.2);
}

.trophy-cup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 25px;
    height: 40px;
    border: 8px solid #ffd700;
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.trophy-cup::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 25px;
    height: 40px;
    border: 8px solid #ffd700;
    border-left: none;
    border-radius: 0 20px 20px 0;
}

.trophy-shine {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-70%);
    width: 15px;
    height: 50px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 10px;
}

.award-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.award-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.award-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.award-button {
    background: #112229;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.award-button:hover {
    background: #2c5aa0;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .awards-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .award-graphic {
        order: 2;
    }
    
    .award-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .award-text h3 {
        font-size: 1.8rem;
    }
    
    .award-trophy {
        width: 80px;
        height: 100px;
        right: 1rem;
    }
    
    .trophy-cup {
        width: 60px;
        height: 70px;
    }
}

/* Testimonials Section */
.testimonials {
    background: #112229;
    padding: 6rem 0;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    position: relative;
}

.testimonials-slider {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
}

.testimonial-text {
    color: white;
}

.quote-mark {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text blockquote {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: normal;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.view-article {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.view-article:hover {
    opacity: 1;
}

.testimonial-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-img {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    opacity: 0.95;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.testimonial-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonial-photo {
        width: 200px;
        height: 200px;
    }
    
    .testimonials-slider {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .testimonial-text blockquote {
        font-size: 1.2rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact Section */
.contact {
    background: white;
    padding: 6rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact .section-header h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact .section-header h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact .section-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #112229;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 34, 41, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.cta-button {
    background: linear-gradient(135deg, #112229 0%, #112229 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
    background: linear-gradient(135deg, #112229 0%, #2c5aa0 100%);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    padding: 2rem !important;
    background: white !important;
    border-radius: 16px !important;
    border-left: 4px solid #112229 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.contact-item i {
    color: #112229;
    background: rgba(139, 90, 60, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-top: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #112229;
    color: white;
    transform: scale(1.1);
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F2027 0%, #112229 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.footer-brand h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #E0E7EA;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E0E7EA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #40E0D0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #E0E7EA;
}

.footer-contact i {
    color: #D4AF37;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #E0E7EA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #40E0D0;
}

/* Investing Page Styles */
.investing-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.investing-hero .container {
    position: relative;
    z-index: 2;
}

.investing-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.investing-hero .hero-text {
    background: rgba(26, 54, 93, 0.95);
    padding: 4rem 3rem;
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.investing-hero .hero-text h1 {
    color: white;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.investing-hero .hero-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Offer Section */
.offer {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.offer-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.offer-title h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.offer-title h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}

.offer-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.offer-item {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e9ecef !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    min-height: 150px !important;
}

.offer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #112229;
}

.offer-item h4 {
    color: #112229;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Partner Section */
.why-partner {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.partner-image .image-placeholder {
    width: 100% !important;
    height: 400px !important;
    background: linear-gradient(135deg, #112229 0%, #112229 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.partner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.partner-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.partner-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.partner-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.faq-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.faq-title h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.faq-title h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}

.faq-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #112229;
}

.faq-question h4 {
    color: #112229;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #112229;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 20px;
    text-align: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 1.5rem;
}

/* How We Work Section */
.how-we-work {
    padding: 6rem 0;
    background: #f8f9fa;
}

.work-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.work-title h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.work-title h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}

.work-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.work-tabs {
    margin-top: 3rem;
}

.tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-button:hover,
.tab-button.active {
    color: #112229;
    border-bottom-color: #112229;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tab-text h4 {
    color: #112229;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tab-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tab-text ul {
    color: #666;
    line-height: 1.6;
}

.tab-text li {
    margin-bottom: 1rem;
}

.tab-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #112229 0%, #112229 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.tab-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Banking Partners Section */
.banking-partners {
    padding: 6rem 0;
    background: white;
}

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

.banking-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.banking-image .image-placeholder::before {
    content: "🇨🇭";
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banking-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.banking-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.banking-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.banking-marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 2rem 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 4rem;
}

.bank-logo {
    color: #112229;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for Investing Page */
@media (max-width: 1024px) {
    .investing-hero {
        background-attachment: scroll;
    }
    
    .investing-hero .hero-text {
        padding: 3rem 2rem;
    }
    
    .partner-content,
    .tab-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .offer-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .investing-hero .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .investing-hero .hero-text {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-title h3 {
        font-size: 1.8rem;
    }
    
    .faq-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-title h3 {
        font-size: 1.8rem;
    }
    
    .work-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-title h3 {
        font-size: 1.8rem;
    }
    
    .banking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .banking-text h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .family-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .family-text h3 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-text h3 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.about-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #112229 0%, #112229 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Family Office Services Section */
.family-office {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.family-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.family-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.family-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.family-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.family-image .image-placeholder::before {
    content: "👨‍👩‍👧‍👦";
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.family-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Get in Touch Section */
.get-in-touch {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advisor-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advisor-image .image-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #112229 0%, #112229 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.advisor-info h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.advisor-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #112229;
}

.submit-btn {
    background: #112229;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #2c5aa0;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 2rem 0;
}

.about-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80vh;
}

.about-hero .hero-text-box {
    background: rgba(17, 34, 41, 0.9);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 12px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero .hero-text-box h1 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
}

.about-hero .hero-text-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Professional Image Styling */
.member-photo img,
.grid-img img,
.network-image img,
.clients-image img,
.service-image img,
.offers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    border: 4px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    border-radius: 50%;
}

.grid-img {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-img img:hover,
.network-image img:hover,
.clients-image img:hover {
    transform: scale(1.05);
}

.network-image,
.clients-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image,
.offers-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image Grid Styling for About Page */
.image-grid .grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-grid .grid-img:hover img {
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vision-text h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.vision-text h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.vision-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 120px 120px;
    gap: 1rem;
}

.grid-img {
    border-radius: 8px !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

.grid-img.large {
    grid-row: span 2;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.value-item {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    min-height: 180px !important;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #112229 0%, #112229 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.value-icon i {
    color: white;
    width: 24px;
    height: 24px;
}

.value-item h4 {
    color: #112229;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Network Section */
.network-section {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.network-image .image-placeholder {
    width: 100% !important;
    height: 400px !important;
    background: linear-gradient(135deg, #112229 0%, #112229 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.network-text h2 {
    color: #112229;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.network-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

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

.clients-text h2 {
    color: #112229;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.clients-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.clients-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #112229 0%, #112229 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
    .about-hero {
        background-attachment: scroll;
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .about-hero .hero-text-box {
        padding: 3rem 2rem;
        max-width: 90%;
    }
    
    .about-hero .hero-text-box h1 {
        font-size: 2.2rem;
    }
    
    .vision-content,
    .network-content,
    .clients-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid {
        grid-template-rows: 150px 100px 100px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-text h3,
    .network-text h2,
    .clients-text h2 {
        font-size: 1.8rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 120px);
    }
    
    .grid-img.large {
        grid-row: span 1;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.contact-hero-content {
    text-align: center;
}

.contact-title-box {
    background: #1a365d;
    padding: 2.5rem 8rem;
    display: inline-block;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-title-box h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    color: #112229;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-info h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.contact-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.phone-link {
    color: #112229;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8f9fa !important;
    padding: 3rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form .form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #112229;
    box-shadow: 0 0 0 3px rgba(139, 90, 60, 0.1);
}

.contact-form .submit-btn {
    background: #112229 !important;
    color: white !important;
    padding: 1rem 3rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-form .submit-btn:hover {
    background: #2c5aa0;
    transform: translateY(-1px);
}

.contact-info .advisor-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info .advisor-image .image-placeholder {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #112229 0%, #112229 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-info .advisor-info h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-info .advisor-info p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-hero {
        background-attachment: scroll;
    }
    
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-title-box {
        padding: 2rem 4rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding-bottom: 2rem;
    }
    
    .contact-title-box h1 {
        font-size: 2.5rem;
    }
    
    .contact-title-box {
        padding: 2rem 4rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info .advisor-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
}
    
    .tab-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: 1px solid #e9ecef;
        border-radius: 0;
    }
    
    .banking-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .investing-hero .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .investing-hero .hero-text p {
        font-size: 1rem;
    }
    
    .banking-logos {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero-text-box {
        margin: 0 1rem;
        padding: 2rem;
        max-width: none;
    }

    .hero-text-box h1 {
        font-size: 2.2rem;
    }

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

    .partners-logos,
    .media-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

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

    .service-card,
    .team-member,
    .award-quote,
    .contact-form {
        padding: 1.5rem;
    }

    .partners-logos,
    .media-logos {
        grid-template-columns: 1fr;
    }
}


/* Form Messages and Modal Styles */
.form-messages {
    margin-bottom: 20px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.message-icon {
    font-weight: bold;
    font-size: 16px;
    min-width: 20px;
}

.message-text {
    flex: 1;
    line-height: 1.4;
}

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

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1a365d;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.modal-info {
    text-align: left;
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.modal-info h4 {
    margin: 0 0 15px 0;
    color: #1a365d;
}

.modal-info ul {
    margin: 0;
    padding-left: 20px;
}

.modal-info li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.modal-btn {
    background: #1a365d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Loading States */
.btn-loading {
    display: none;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
