/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-accent: 'Black Han Sans', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    --font-bold: 'Anton', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.image-text-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nav-logo i {
    font-size: 2rem;
    color: #667eea;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.main-title {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255,215,0,0.3);
}

.sub-title {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: 3px;
    margin-top: -0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.highlight-box {
    background: var(--gold-gradient);
    color: #2c3e50;
    padding: 3px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.feature-tag i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.primary-btn {
    background: var(--gold-gradient);
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hero Showcase */
.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(102,126,234,0.1) 100%);
}

.image-placeholder i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.image-overlay {
    text-align: center;
    position: relative;
    z-index: 2;
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.performance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.perf-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.perf-icon i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.perf-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    margin-bottom: 0.3rem;
}

.perf-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.chart-preview {
    padding: 1rem;
    text-align: center;
}

.chart-header {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
}

.chart-visual {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
    height: 60px;
}

.chart-bar {
    width: 8px;
    background: var(--gold-gradient);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: 100%; }
}

.youtube-preview {
    padding: 1.5rem;
    text-align: center;
}

.youtube-icon i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.youtube-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.youtube-stats span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 70px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.main-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-image i {
    font-size: 3rem;
    color: white;
}

.profile-section h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 1.1rem;
    opacity: 0.9;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.credential-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.achievement-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Investment Philosophy Section */
.philosophy {
    padding: 70px 0;
    background: white;
}

.philosophy-content {
    display: grid;
    gap: 3rem;
}

.philosophy-main {
    margin-bottom: 2rem;
}

.quote-box {
    background: var(--primary-gradient);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
}

.quote-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.quote-icon i {
    font-size: 3rem;
    color: #ffd700;
}

.quote-box blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-family: var(--font-primary);
}

.quote-box cite {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: normal;
    color: #ffd700;
    position: relative;
    z-index: 2;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gradient);
}

.principle-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--gold-gradient);
    color: #2c3e50;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.principle-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-accent);
}

.principle-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.principle-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 600;
}

.principle-detail i {
    font-size: 1.2rem;
}

/* Success Stories Section */
.success {
    padding: 70px 0;
    background: var(--bg-light);
}

.success-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2rem;
}

.success-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.success-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.success-item.large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: #ffd700;
}

.success-item.large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.success-item.large p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.success-years {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 700;
    color: #ffd700;
}

.success-item h4 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-display);
}

.success-item:not(.large) p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Community Section */
.community {
    padding: 70px 0;
    background: white;
}

.community-content {
    display: grid;
    gap: 3rem;
}

.main-announcement {
    margin-bottom: 2rem;
}

.announcement-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 900;
}

.card-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.card-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.card-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.card-content i {
    color: #ffd700;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: #667eea;
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 70px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.benefit-card.premium::before {
    content: '인기';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:not(.premium) .card-header {
    border-bottom-color: var(--border-color);
}

.card-header div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 2rem;
    color: #ffd700;
}

.benefit-card:not(.premium) .card-header i {
    color: #667eea;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge {
    background: #ffd700;
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.benefit-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-card:not(.premium) li {
    background: var(--bg-light);
    color: var(--text-primary);
}

.benefit-card li i {
    font-size: 1.2rem;
    color: #ffd700;
}

.benefit-card:not(.premium) li i {
    color: #667eea;
}

/* Contact Section */
.contact {
    padding: 70px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-card.youtube:hover {
    border-color: #ff0000;
}

.contact-card.community:hover {
    border-color: #667eea;
}

.contact-card.education:hover {
    border-color: #ffd700;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: #ffd700;
}

.contact-card.youtube .card-icon i {
    color: #ff0000;
}

.contact-card.community .card-icon i {
    color: #667eea;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.contact-card p {
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-btn {
    background: var(--gold-gradient);
    color: #2c3e50;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.proof-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.proof-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.proof-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.proof-item span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ffd700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #2c3e50;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h4 {
    color: #667eea;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.modal-body h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.privacy-contact {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .sub-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Event Section Optimization for Tablets */
    .image-text-layout {
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .event-header h3 {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar{
        display: none;
    }
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-container {
        min-height: calc(100vh - 60px);
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .showcase-gallery {
        grid-template-columns: 1fr;
    }
    
    .performance-cards {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    .image-text-layout{
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .features-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .social-proof {
        grid-template-columns: 1fr;
    }
    
    .image-text-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-section {
        order: 1;
    }
    
    .image-section img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .text-section {
        order: 2;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .event-header {
        margin-bottom: 1.5rem;
    }
    
    .event-header h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .event-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .event-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .event-cta {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .cta-highlight {
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .floating-btn {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .about-card,
    .quote-box,
    .contact-card {
        padding: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .quote-box blockquote {
        font-size: 1.4rem;
    }
    
    .success-number {
        font-size: 2rem;
    }
    
    .about-card,
    .quote-box,
    .contact-card,
    .announcement-card {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .perf-card {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .image-text-layout {
        gap: 1rem;
    }
    
    .image-section img {
        max-height: 200px;
    }
    
    .event-content {
        padding: 0;
    }
    
    .event-header {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .event-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .event-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .event-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .benefit-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .benefit-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .benefit-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .event-cta {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .cta-highlight {
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 0.8rem;
    }
    
    .floating-btn {
        min-width: 160px;
        padding: 10px 16px;
        font-size: 0.85rem;
        bottom: 20px;
    }
    
    .floating-btn span {
        font-size: 0.85rem;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: floatIn 0.5s ease-out;
}

.floating-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.floating-btn:hover::before {
    left: 100%;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.floating-btn i {
    font-size: 1.1rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Event Content Styles */
.event-content {
    padding: 1rem 0;
}

.event-header {
    margin-bottom: 2rem;
}

.event-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.event-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.event-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-gradient);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.cta-highlight {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1rem;
    opacity: 0.9;
}
