/* Reset and Base Styles */
:root {
    --gold: #D4AF37;
    --dark-blue: #1B365D;
    --light-gold: #F4E8C1;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --success: #28A745;
    --whatsapp: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 25%, var(--light-gray) 75%, var(--light-gold) 100%);
    background-attachment: fixed;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 238, 178, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(27, 54, 93, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-logo i {
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1.3));
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d97706;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(27, 54, 93, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(27, 54, 93, 0.1) 1px, transparent 1px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 54, 93, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(27, 54, 93, 0.8);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-blue);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #997706, #302a1b, #64531a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-blue);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #443b15;
    display: block;
    text-shadow: 0 0 20px rgba(254, 243, 199, 0.6);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #443b15;
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), #B8941F);
    color: var(--white);
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #B8941F, #9E7B1A);
}

.btn-secondary {
    background: rgba(27, 54, 93, 0.9);
    color: var(--white);
    border: 2px solid rgba(27, 54, 93, 0.8);
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(254, 243, 199, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 243, 199, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(27, 54, 93, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Overview Section */
.overview-section {
    background: var(--white);
    backdrop-filter: blur(10px);
}

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

.overview-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 54, 93, 0.1);
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--gold), #B8941F);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.overview-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Company Section */
.company-section {
    background: #f8fafc;
}

.company-content {
    max-width: 1000px;
    margin: 0 auto;
}

.company-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.company-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 54, 93, 0.1);
    backdrop-filter: blur(10px);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.ski-card .company-logo {
    background: linear-gradient(45deg, var(--gold), #B8941F);
}

.gsi-card .company-logo {
    background: linear-gradient(45deg, var(--dark-blue), #0f1f2d);
}

.gsi-card .company-logo {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #64748b;
}

.feature-list i {
    color: #10b981;
    font-size: 0.9rem;
}

.partner-section {
    margin-top: 40px;
}

.partner-card {
    background: linear-gradient(135deg, var(--dark-blue), #0f1f2d);
    color: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.partner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.partner-stat {
    text-align: center;
}

.partner-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
}

.partner-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Funds Section */
.funds-section {
    background: white;
}

.funds-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #f59e0b 0deg 150deg,
        #fbbf24 150deg 360deg
    );
    position: relative;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.funds-breakdown {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fund-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.fund-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-top: 5px;
}

.color-1 {
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.color-2 {
    background: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.fund-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(146, 64, 14, 0.1);
}

.fund-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 5px;
}

.fund-percentage {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 10px;
}

.fund-sublist {
    list-style: none;
    margin-top: 10px;
}

.fund-sublist li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.fund-sublist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f59e0b;
}

/* Financial Section */
.financial-section {
    background: var(--light-gray);
}

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

.financial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.25);
    border-color: rgba(251, 191, 36, 0.4);
}

.financial-card .card-header {
    margin-bottom: 25px;
}

.financial-card .card-icon {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.financial-data {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row.highlight {
    background: rgba(254, 243, 199, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin: 5px 0;
    backdrop-filter: blur(5px);
}

.year {
    font-weight: 600;
    color: #92400e;
}

.amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.amount.positive {
    color: #059669;
}

.amount.negative {
    color: #d97706;
}

.growth {
    background: #dcfce7;
    color: #166534;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.balance-data .balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.balance-data .balance-item:last-child {
    border-bottom: none;
}

.balance-data .label {
    color: #64748b;
    font-weight: 500;
}

.balance-data .amount {
    color: #1e293b;
    font-weight: 600;
}

/* Valuation Section */
.valuation-section {
    background: white;
}

.valuation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ratio-card {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.ratio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.ratio-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.ratio-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ratio-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.shareholding-structure {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.shareholding-structure h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
}

.shareholding-chart {
    max-width: 600px;
    margin: 0 auto;
}

.shareholding-bar {
    display: flex;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.share-existing {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.share-public {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Advantages Section */
.advantages-section {
    background: #f8fafc;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}

.competitors-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.competitors-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
}

.competitors-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.competitor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    min-width: 150px;
}

.competitor-item i {
    font-size: 2rem;
    color: #64748b;
}

.competitor-item span {
    font-weight: 500;
    color: #1e293b;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, var(--dark-blue), #0f1f2d);
    color: var(--white);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info p {
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-text .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-text .value {
    font-weight: 600;
}

.contact-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Sharing Section */
.sharing-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.sharing-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sharing-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    text-align: center;
    justify-content: center;
}

.btn-share.whatsapp {
    background: linear-gradient(45deg, var(--whatsapp), #128C7E);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-share.whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-share.copy {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-share.copy:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-share.test {
    background: linear-gradient(45deg, var(--gold), #B8941F);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-share.test:hover {
    background: linear-gradient(45deg, #B8941F, #9E7B1A);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), #0f1f2d);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-text p {
    color: var(--light-gold);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-top: 8px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .company-cards {
        grid-template-columns: 1fr;
    }
    
    .funds-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .valuation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .competitors-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .sharing-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-share {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-top: 5px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .overview-card,
    .company-card,
    .financial-card,
    .advantage-card {
        padding: 20px;
    }
    
    .valuation-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Print Styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    /* Hide navigation and interactive elements */
    .navbar,
    .nav-toggle,
    .hero-actions,
    .contact-actions,
    .scroll-indicator,
    .print-btn {
        display: none !important;
    }
    
    /* Page breaks */
    .section {
        page-break-after: always;
        page-break-inside: avoid;
        padding: 20pt 15pt;
        margin: 0;
        min-height: auto;
    }
    
    .section:last-child {
        page-break-after: auto;
    }
    
    /* Hero section adjustments */
    .hero-section {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
        color: white !important;
        padding: 30pt 15pt;
        text-align: center;
        page-break-after: always;
    }
    
    .hero-background,
    .hero-overlay,
    .hero-particles {
        display: none;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 24pt;
        margin-bottom: 15pt;
        color: white !important;
    }
    
    .gradient-text {
        color: #fbbf24 !important;
    }

    .gradient-text2 {
        color: #fbbf24 !important;
    }
    
    .hero-subtitle {
        font-size: 18pt;
        color: white !important;
    }
    
    .hero-description {
        font-size: 12pt;
        margin-bottom: 20pt;
        color: white !important;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 30pt;
        margin-bottom: 20pt;
    }
    
    .stat-number {
        font-size: 18pt;
        color: #fbbf24 !important;
    }
    
    .stat-label {
        font-size: 10pt;
        color: white !important;
    }
    
    /* Section headers */
    .section-header {
        text-align: center;
        margin-bottom: 20pt;
        page-break-after: avoid;
    }
    
    .section-title {
        font-size: 18pt;
        font-weight: bold;
        color: #1e293b !important;
        margin-bottom: 8pt;
        page-break-after: avoid;
    }
    
    .section-subtitle {
        font-size: 11pt;
        color: #64748b !important;
        margin-bottom: 15pt;
    }
    
    /* Card layouts for print */
    .overview-grid,
    .company-cards,
    .financial-grid,
    .valuation-grid,
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15pt;
        page-break-inside: avoid;
    }
    
    .overview-card,
    .company-card,
    .financial-card,
    .ratio-card,
    .advantage-card {
        background: white !important;
        border: 1pt solid #e2e8f0;
        border-radius: 8pt;
        padding: 12pt;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .card-icon,
    .company-logo,
    .advantage-icon,
    .ratio-icon {
        background: #d97706 !important;
        color: white !important;
        width: 30pt;
        height: 30pt;
        font-size: 12pt;
        margin-bottom: 8pt;
    }
    
    /* Partner section */
    .partner-card {
        background: #d97706 !important;
        color: white !important;
        padding: 15pt;
        border-radius: 8pt;
        text-align: center;
        page-break-inside: avoid;
    }
    
    .partner-stats {
        display: flex;
        justify-content: center;
        gap: 20pt;
        margin-top: 10pt;
    }
    
    /* Funds section */
    .funds-content {
        display: block;
        page-break-inside: avoid;
    }
    
    .funds-chart {
        text-align: center;
        margin-bottom: 20pt;
    }
    
    .chart-container {
        width: 150pt;
        height: 150pt;
        margin: 0 auto 15pt;
    }
    
    .pie-chart {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: conic-gradient(
            #f59e0b 0deg 150deg,
            #fbbf24 150deg 360deg
        ) !important;
    }
    
    .funds-breakdown {
        display: block;
    }
    
    .fund-item {
        display: flex;
        gap: 10pt;
        margin-bottom: 15pt;
        page-break-inside: avoid;
    }
    
    .fund-indicator {
        width: 12pt;
        height: 12pt;
        border-radius: 2pt;
        margin-top: 3pt;
    }
    
    .fund-amount {
        font-size: 14pt;
        font-weight: bold;
        color: #059669 !important;
    }
    
    /* Financial data */
    .financial-data {
        page-break-inside: avoid;
    }
    
    .data-row {
        border-bottom: 1pt solid #e2e8f0;
        padding: 6pt 0;
    }
    
    .data-row.highlight {
        background: #fef3c7 !important;
        padding: 8pt;
        border-radius: 4pt;
        border: 1pt solid #f59e0b;
    }
    
    .amount.positive {
        color: #059669 !important;
    }
    
    .amount.negative {
        color: #dc2626 !important;
    }
    
    .growth {
        background: #dcfce7 !important;
        color: #166534 !important;
        padding: 2pt 6pt;
        border-radius: 10pt;
        font-size: 9pt;
    }
    
    /* Valuation grid */
    .ratio-card {
        background: #f59e0b !important;
        color: white !important;
        text-align: center;
        padding: 15pt;
    }
    
    .ratio-value {
        font-size: 16pt;
        font-weight: bold;
        margin: 8pt 0;
    }
    
    .ratio-label {
        font-size: 9pt;
    }
    
    /* Shareholding structure */
    .shareholding-structure {
        background: #f8fafc !important;
        padding: 15pt;
        border-radius: 8pt;
        text-align: center;
        page-break-inside: avoid;
        margin-top: 20pt;
    }
    
    .shareholding-bar {
        height: 30pt;
        border-radius: 15pt;
        overflow: hidden;
        border: 1pt solid #e2e8f0;
        margin-top: 10pt;
    }
    
    .share-existing {
        background: #f59e0b !important;
        color: white !important;
        font-size: 10pt;
    }
    
    .share-public {
        background: #f59e0b !important;
        color: white !important;
        font-size: 10pt;
    }
    
    /* Competitors section */
    .competitors-section {
        background: white !important;
        border: 1pt solid #e2e8f0;
        padding: 15pt;
        border-radius: 8pt;
        page-break-inside: avoid;
    }
    
    .competitors-list {
        display: flex;
        justify-content: space-around;
        gap: 10pt;
    }
    
    .competitor-item {
        text-align: center;
        padding: 8pt;
        background: #f8fafc !important;
        border-radius: 6pt;
        font-size: 9pt;
    }
    
    /* Contact section */
    .contact-card {
        background: #f59e0b !important;
        color: white !important;
        padding: 20pt;
        border-radius: 8pt;
        page-break-inside: avoid;
    }
    
    .contact-header {
        display: flex;
        gap: 15pt;
        margin-bottom: 15pt;
        align-items: center;
    }
    
    .contact-avatar {
        width: 40pt;
        height: 40pt;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16pt;
    }
    
    .contact-item {
        display: flex;
        gap: 10pt;
        margin-bottom: 10pt;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 20pt;
        height: 20pt;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 4pt;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10pt;
        margin-top: 2pt;
    }
    
    .contact-text .value {
        font-weight: bold;
        font-size: 11pt;
    }
    
    /* Footer */
    .footer {
        background: #1e293b !important;
        color: white !important;
        padding: 15pt;
        text-align: center;
        page-break-before: avoid;
    }
    
    .footer-logo {
        font-size: 14pt;
        font-weight: bold;
        margin-bottom: 8pt;
    }
    
    .footer-text {
        font-size: 10pt;
        color: #94a3b8 !important;
    }
    
    /* Print-specific utilities */
    .print-page-break {
        page-break-before: always;
    }
    
    .print-avoid-break {
        page-break-inside: avoid;
    }
    
    .print-keep-together {
        page-break-inside: avoid;
        page-break-after: avoid;
    }
}

/* WhatsApp Button Styling */
.btn:has(.fa-whatsapp) {
    background: linear-gradient(45deg, var(--whatsapp), #128C7E) !important;
    border: none !important;
}

.btn:has(.fa-whatsapp):hover {
    background: linear-gradient(45deg, #128C7E, #075E54) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Alternative selector for older browsers */
.btn .fa-whatsapp {
    color: var(--white);
}

.btn:hover .fa-whatsapp {
    color: var(--white);
}

/* Checkout Section Styles */
.checkout-section {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 50%, var(--light-gold) 100%);
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.checkout-content {
    position: relative;
    z-index: 1;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.investment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(27, 54, 93, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(27, 54, 93, 0.15);
    border-color: var(--gold);
}

.investment-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 232, 193, 0.3) 100%);
    transform: scale(1.05);
}

.investment-card.featured::before {
    transform: scaleX(1);
}

.card-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #B8941F);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 15px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.card-header h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.price .currency {
    color: var(--gray);
    font-size: 1.2rem;
    font-weight: 500;
}

.price .amount {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 800;
}

.shares {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 8px 12px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.card-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.feature-item i {
    color: var(--success);
    font-size: 1rem;
    width: 16px;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #B8941F);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #B8941F, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-checkout:active {
    transform: translateY(0);
}

.custom-investment {
    margin-bottom: 40px;
}

.custom-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(27, 54, 93, 0.1);
    text-align: center;
    border: 2px solid var(--light-gold);
}

.custom-card h3 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-card p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.custom-input-group {
    max-width: 400px;
    margin: 0 auto 30px auto;
}

.input-container {
    margin-bottom: 15px;
}

.input-container label {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.input-container input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gold);
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.input-container input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.shares-info {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 8px 12px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.payment-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(27, 54, 93, 0.1);
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method:hover {
    background: var(--light-gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 2rem;
    color: var(--gold);
}

.payment-method span {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--light-gold);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.security-item i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Responsive Design for Checkout Section */
@media (max-width: 768px) {
    .investment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .investment-card.featured {
        transform: none;
    }
    
    .investment-card {
        padding: 25px;
    }
    
    .custom-card {
        padding: 30px 20px;
    }
    
    .payment-info {
        padding: 30px 20px;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .price .amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .card-badge {
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .price .amount {
        font-size: 1.6rem;
    }
    
    .investment-card {
        padding: 20px;
    }
    
    .custom-card {
        padding: 25px 15px;
    }
    
    .payment-info {
        padding: 25px 15px;
    }
}

/* Very small mobile devices (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 35px 12px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .investment-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .price .amount {
        font-size: 1.4rem;
    }
    
    .custom-card {
        padding: 20px 12px;
    }
    
    .payment-info {
        padding: 20px 12px;
    }
}
