/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif KR', serif;
    line-height: 1.6;
    color: #2D1B2B;
    background-color: #fff;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #9B1D44;
    --secondary-color: #E8B4BC;
    --accent-color: #2D1B2B;
    --light-bg: #fef9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #9B1D44 0%, #E8B4BC 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles removed for fullscreen hero */

/* Stock Ticker */
.stock-ticker {
    background: rgba(45, 27, 43, 0.9);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 180, 188, 0.3);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-move {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-item .up {
    color: #4ade80;
}

.ticker-item .down {
    color: #f87171;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../images/bgc.png') center center/cover no-repeat;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.gradient-text {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 350px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(155, 29, 68, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.about-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.about-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.about-item p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 29, 68, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(155, 29, 68, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(155, 29, 68, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(155, 29, 68, 0.1);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 180, 188, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    /* 确保始终可见 */
    opacity: 1 !important;
}

.cta-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Noto Serif KR', serif;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(155, 29, 68, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(155, 29, 68, 0.4);
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-icon {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .stock-ticker {
        padding: 8px 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 120px;
        max-width: 140px;
    }
    
    .stat-item i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .about-item {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .about-item > div {
        text-align: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    
    .benefits-text {
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 350px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 400px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .faq-content {
        padding: 0 15px;
    }
    
    .faq-item {
        text-align: center;
    }
    
    .faq-question {
        justify-content: center;
        text-align: center;
    }
    
    .faq-answer {
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
        text-align: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        margin: 0 auto;
    }
    
    .about, .services, .benefits, .testimonials, .faq {
        padding: 60px 0;
    }
    
    .cta-button {
        min-width: 250px;
        font-size: 1rem;
        padding: 12px 25px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 12px;
        margin-top: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        max-width: 120px;
    }
    
    .stat-number {
        font-size: 1rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .fixed-cta {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        min-width: 250px;
        font-size: 0.95rem;
        padding: 12px 20px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }
    
    .ticker-item {
        font-size: 0.75rem;
        padding: 0 15px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 250px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .image-placeholder p {
        font-size: 1rem;
    }
}
