/* ===================================
   IM Global - Luxury Real Estate Theme
   Dark + Gold Professional Design
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-dark: #0a0a0a;
    --color-bg-section: #111111;
    --color-bg-card: #1a1a1a;
    --color-bg-card-hover: #222222;

    --color-gold: #c9a962;
    --color-gold-light: #e0c882;
    --color-gold-dark: #a88b4a;

    --color-text-primary: #ffffff;
    --color-text-secondary: #b3b3b3;
    --color-text-muted: #666666;

    --color-border: #2a2a2a;
    --color-border-gold: rgba(201, 169, 98, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

.section-text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.gold-text {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.4);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

.logo-im {
    color: var(--color-gold);
}

.logo-global {
    color: var(--color-text-primary);
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-gold);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 48px 48px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* Stats Section */
.stats {
    padding: var(--section-padding) 0;
    background: var(--color-bg-section);
}

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

.stats-header .section-subtitle {
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.stat-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 4px;
}

.stat-label {
    margin-top: 16px;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* Why Us Section */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-title {
    margin-bottom: 24px;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.why-us-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 16px;
}

.founders-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 48px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.founders-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.founders-text p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.founders-signature {
    margin-top: 24px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-gold) !important;
    font-size: 1.125rem;
}

/* Investments Section */
.investments {
    padding: var(--section-padding) 0;
    background: var(--color-bg-section);
}

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

.investments-header .section-subtitle {
    margin: 0 auto;
}

.investments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.investment-card {
    padding: 40px 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-medium);
}

.investment-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.investment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.investment-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.investment-card p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

/* Process Section */
.process {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-subtitle {
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-border) 100%);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
    line-height: 1;
    padding-bottom: 4px;
}

.step-content {
    padding-top: 16px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: var(--section-padding) 0;
    background: var(--color-bg-section);
}

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

.team-header .section-subtitle {
    margin: 0 auto;
}

.team-founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    transition: all var(--transition-medium);
}

.team-card:hover {
    border-color: var(--color-border-gold);
}

.founder-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.team-photo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    padding: 4px;
    background: url('Site Media/goldfoil.jpg') center/cover;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.team-photo.small {
    width: 80px;
    height: 80px;
    padding: 3px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.team-photo.small .photo-placeholder {
    font-size: 1rem;
    border-radius: 50%;
}

.team-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
}

/* Individual photo adjustments to center faces */
.photo-melda {
    object-position: center 18%;
    filter: brightness(0.85) contrast(1.1);
}

.photo-clip {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.photo-ian {
    object-position: center 5%;
    transform: scale(1.3);
}

.photo-saime {
    object-position: center 15%;
}

.photo-ayse {
    object-position: center 40%;
}

.photo-tayfun {
    object-position: center 25%;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 4px;
}

.team-role {
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.team-info p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.team-license {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.network-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.network-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
}

.network-card .team-info h3 {
    font-size: 1.125rem;
}

.network-card .team-info p {
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-person h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.contact-dre {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.contact-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.contact-icon {
    font-size: 1rem;
}

.office-locations {
    margin-top: 40px;
}

.office-locations h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.office-locations ul {
    list-style: none;
}

.office-locations li {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.office-locations li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M6 8L1 3h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
}

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

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--color-bg-section);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    margin-top: 12px;
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.75rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    /* Nav collapses to hamburger at this breakpoint */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right var(--transition-medium);
        border-left: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

    .why-us-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
    }

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

    .process-timeline::before {
        left: 24px;
    }

    .process-step {
        gap: 24px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .team-founders {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .team-photo {
        margin: 0 auto;
    }

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

    .network-card {
        flex-direction: column;
        text-align: center;
    }

    .network-card .team-photo {
        margin: 0 auto;
    }

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

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

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

    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
    }
}

/* ===================================
   Gold Outline SVG Icons
   =================================== */
.gold-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    stroke: var(--color-gold);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon .gold-icon {
    width: 28px;
    height: 28px;
}

.investment-icon .gold-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .gold-icon {
    width: 18px;
    height: 18px;
}

/* ===================================
   Language Toggle
   =================================== */
.lang-toggle-wrapper {
    margin-left: 8px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    background: rgba(201, 169, 98, 0.2);
    border-color: var(--color-gold);
}

.lang-option {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.lang-option.active {
    color: var(--color-gold);
}

.lang-divider {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* ===================================
   Expandable Content / Read More
   =================================== */
.feature-expand {
    margin-top: 12px;
}

.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.expand-btn:hover {
    color: var(--color-gold-light);
}

.expand-btn:hover .expand-icon {
    transform: translateY(2px);
}

.expand-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.expand-btn.active .expand-icon {
    transform: rotate(180deg);
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.expand-content.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
}

.expand-content p {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    padding: 16px;
    background: rgba(201, 169, 98, 0.05);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.feature-list {
    list-style: none;
    margin-top: 12px;
    padding: 16px;
    background: rgba(201, 169, 98, 0.05);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.feature-list li {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    padding: 8px 0;
    line-height: 1.6;
}

.feature-list li:first-child {
    padding-top: 0;
}

.feature-list li:last-child {
    padding-bottom: 0;
}

/* ===================================
   Process Step List
   =================================== */
.step-list {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
}

.step-list li {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.step-list li strong {
    color: var(--color-text-primary);
}

/* ===================================
   Contact CTA Text
   =================================== */
.contact-cta-text {
    color: var(--color-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===================================
   Founders Card Enhancements
   =================================== */
.founders-text p {
    margin-bottom: 16px;
}

.founders-text p:last-of-type:not(.founders-signature) {
    margin-bottom: 24px;
}

/* ===================================
   Investments Section Subtitle Enhancement
   =================================== */
.investments-header .section-subtitle {
    max-width: 900px;
}

/* ===================================
   Process Section Subtitle Enhancement
   =================================== */
.process-header .section-subtitle {
    max-width: 900px;
}

/* ===================================
   Team Section Intro Enhancement
   =================================== */
.team-header .section-subtitle {
    max-width: 900px;
}

/* ===================================
   Mobile Language Toggle
   =================================== */
@media (max-width: 768px) {
    .lang-toggle-wrapper {
        margin-left: 0;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--color-border);
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo {
        height: 60px;
    }
}

/* ===================================
   Gold Foil Texture Effect
   =================================== */

/* Gold foil texture for text */
.gold-foil-text {
    background: url('Site Media/goldfoil.jpg');
    background-size: 300px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

/* Gold foil for icons (SVG) */
.gold-foil-icon {
    filter: url(#gold-foil-filter);
}

/* Gold foil border effect */
.gold-foil-border {
    border-image: url('Site Media/goldfoil.jpg') 30 round;
}

/* Gold foil effect for icon SVGs using filter */
.feature-icon svg.gold-icon,
.investment-icon svg.gold-icon {
    filter: drop-shadow(0 0 1px rgba(201, 169, 98, 0.8)) drop-shadow(0 0 2px rgba(224, 200, 130, 0.6)) brightness(1.1) contrast(1.05);
    stroke: url(#goldfoil-gradient);
}

/* Fallback gold color for icons */
.gold-icon {
    stroke: url(#goldfoil-gradient);
    color: var(--color-gold);
}

/* Gold foil button */
.btn-primary {
    background: url('Site Media/goldfoil.jpg');
    background-size: 200px;
    color: #000;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: shimmer 8s ease-in-out infinite;
}

.btn-primary:hover {
    background: url('Site Media/goldfoil.jpg');
    background-size: 200px;
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

/* Gold foil for stat numbers */
.stat-number {
    background: url('Site Media/goldfoil.jpg');
    background-size: 300px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

.stat-suffix {
    background: url('Site Media/goldfoil.jpg');
    background-size: 300px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Gold foil for section title highlights */
.gold-text {
    background: url('Site Media/goldfoil.jpg');
    background-size: 300px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

/* Gold foil for founders card title and signature */
.founders-text h3,
.founders-signature {
    background: url('Site Media/goldfoil.jpg');
    background-size: 300px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

/* Gold foil for team roles */
.team-role {
    background: url('Site Media/goldfoil.jpg');
    background-size: 200px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Gold foil for step numbers - border and text */
.step-number {
    border: 3px solid transparent;
    background:
        linear-gradient(var(--color-bg-dark), var(--color-bg-dark)) padding-box,
        url('Site Media/goldfoil.jpg') border-box;
    background-size: auto, 150px;
}

.step-number-text {
    background: url('Site Media/goldfoil.jpg');
    background-size: 150px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Gold foil for hero badge border */
.hero-badge {
    border: 1px solid transparent;
    background:
        rgba(201, 169, 98, 0.1) padding-box,
        url('Site Media/goldfoil.jpg') border-box;
    background-size: auto, 200px;
}

/* Gold foil for nav CTA button */
.nav-cta {
    background: url('Site Media/goldfoil.jpg') !important;
    background-size: 150px !important;
    color: #000 !important;
    font-weight: 600;
}

.nav-cta:hover {
    filter: brightness(1.1);
    background: url('Site Media/goldfoil.jpg') !important;
    background-size: 150px !important;
}

/* Gold foil for image frame */
.image-frame {
    background: url('Site Media/goldfoil.jpg');
    background-size: 200px;
}

/* Gold foil for lang toggle active option */
.lang-option.active {
    background: url('Site Media/goldfoil.jpg');
    background-size: 100px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Shimmer animation for gold foil effect */
@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Gold foil for expand button text */
.expand-btn {
    background: url('Site Media/goldfoil.jpg');
    background-size: 150px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Gold foil for feature list bullet points */
.step-list li::before {
    background: url('Site Media/gold_foil_texture.png');
    background-size: 50px;
}

/* Gold foil for expand content left border */
.expand-content p,
.feature-list {
    border-left: 2px solid;
    border-image: url('Site Media/gold_foil_texture.png') 1;
}