/* =====================
   Custom CSS for lelienモバイルアカデミー
   ===================== */

/* Variables */
:root {
    --primary-color: #7cb342;
    --secondary-color: #558b2f;
    --accent-color: #aed581;
    --light-green: #f1f8e9;
    --dark-gray: #2c3e50;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    --gradient-accent: linear-gradient(135deg, #aed581 0%, #9ccc65 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.title-highlight {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    gap: 1rem;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
}

.hero-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

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

/* Hero accent images */
.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-images {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-img {
    position: absolute;
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-img-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.floating-img-2 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.hero-accent-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-external-link {
    text-align: center;
}

.external-badge {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.external-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.external-badge i {
    transition: transform 0.3s ease;
}

.external-badge:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* About Section */
#about {
    padding: 5rem 0;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

/* Business Division Section */
.business-division-section {
    background: var(--light-green);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.business-division-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.division-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.external-link-card {
    border: 2px solid var(--primary-color);
}

.division-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.division-icon i {
    font-size: 2rem;
    color: white;
}

.division-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.division-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.division-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.division-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.current-page-badge {
    background: var(--light-green);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
}

.footer-external-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-external-links a:hover {
    color: var(--accent-color) !important;
    transform: translateX(3px);
}

/* Dropdown menu styling */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: none;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary-color);
}

.dropdown-item i {
    color: var(--primary-color);
}

/* Section hero images */
.certification-hero-image,
.services-hero-image {
    margin-bottom: 3rem;
    text-align: center;
}

.certification-img,
.services-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.certification-img:hover,
.services-img:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(124, 179, 66, 0.3);
}

/* Address link styling */
.address-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.address-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    transform: translateX(5px);
}

.address-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.image-placeholder {
    background: var(--light-green);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--primary-color);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* Certifications Section */
.certification-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.certification-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.certification-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.certification-card.featured .card-icon i {
    color: white;
}

.certification-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.certification-card.featured .card-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.certification-card.featured .feature-list li::before {
    color: white;
}

.price-info {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.certification-card.featured .price-info {
    background: rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.certification-card.featured .price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.certification-card.featured .price {
    color: white;
}

.profit-info {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.certification-card.featured .profit-info {
    color: var(--accent-color);
}

/* Benefits Section */
.certification-benefits {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.benefit-item {
    padding: 1rem;
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

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

.plan-name {
    font-weight: 600;
    color: var(--primary-color);
}

.plan-price {
    font-weight: 700;
    color: var(--accent-color);
}

.plan-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partners Section */
.partner-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.partner-level {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-commission {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-green);
    border-radius: 25px;
    display: inline-block;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.partner-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.partner-requirement {
    font-style: italic;
    color: var(--text-light);
}

/* Contact Section */
.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* Footer */
footer {
    background: var(--dark-gray) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-links a:hover {
    color: var(--accent-color) !important;
}

.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certification-card.featured {
        transform: none;
    }
    
    .certification-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hero-content {
        padding: 80px 0 30px;
    }
    
    .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Videos Section */
.video-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-header {
    padding: 2rem 2rem 1rem;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.video-title i {
    color: var(--accent-color);
}

.video-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    flex: 1;
    min-height: 300px;
}

.video-player {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-player:not([controls]):hover + .video-overlay,
.video-container:hover .video-overlay {
    opacity: 0.7;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.video-info {
    padding: 1rem 2rem 2rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.stat-item i {
    font-size: 0.9rem;
}

/* Video Details Section */
.video-details-section {
    padding: 2rem 0;
}

.video-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.video-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.detail-icon i {
    font-size: 2rem;
    color: white;
}

.video-detail-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-detail-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Video CTA Section */
.video-cta-section {
    padding: 3rem 0;
}

.cta-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Smartphone Lady Section */
.lady-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.lady-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lady-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lady-icon i {
    font-size: 2rem;
    color: white;
}

.lady-info-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list-simple {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list-simple li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.highlight-text {
    background: var(--light-green);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.highlight-box {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

/* Comparison Table */
.comparison-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.section-subtitle-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.comparison-header {
    background: var(--light-green);
    color: var(--text-dark);
    font-weight: 600;
}

.traditional-header {
    background: #f8d7da;
    color: #721c24;
    font-weight: 600;
}

.jtbc-header {
    background: var(--light-green);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-item {
    background: #f8f9fa;
    font-weight: 600;
}

.positive-cell {
    background: #d4edda;
}

.negative-cell {
    background: #f8d7da;
}

.neutral-cell {
    background: #fff3cd;
}

/* EWA Section */
.ewa-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.ewa-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.ewa-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.ewa-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ewa-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ewa-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.ewa-step {
    flex: 1;
    text-align: center;
    min-width: 150px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ewa-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 1rem;
}

.ewa-benefit {
    background: var(--gradient-accent);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
}

.ewa-benefit i {
    margin-right: 0.5rem;
}

/* PDF Cards */
.pdf-download-section {
    margin-top: 3rem;
}

.pdf-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pdf-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pdf-icon i {
    font-size: 2.5rem;
    color: #dc3545;
}

.pdf-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.lady-cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.lady-cta-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.lady-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-item {
    height: 100%;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.9), rgba(85, 139, 47, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-image:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.bg-light-green {
    background-color: var(--light-green);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: 20px;
}

    border-radius: 20px;
}

/* Mascot Character Styles */
.mascot-container {
    text-align: center;
    margin-bottom: 2rem;
}

.mascot-hero {
    width: 150px;
    height: auto;
    animation: mascotBounce 2s ease-in-out infinite;
}

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

.mascot-speech-bubble {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 15px;
}

.mascot-small {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.speech-bubble {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.speech-bubble p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.mascot-welcome {
    margin-bottom: 2rem;
}

.mascot-large {
    width: 120px;
    height: auto;
    animation: mascotWave 3s ease-in-out infinite;
}

.mascot-large {
    width: 120px;
    height: auto;
    animation: mascotWave 3s ease-in-out infinite;
}

.mascot-medium {
    width: 100px;
    height: auto;
    animation: mascotBounce 2s ease-in-out infinite;
}

.mascot-service-container {
    display: inline-block;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

@keyframes mascotWave {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Floating Mascot */
.floating-mascot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.floating-mascot img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: floatMascot 3s ease-in-out infinite;
}

@keyframes floatMascot {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.floating-mascot:hover img {
    transform: scale(1.1);
}

.mascot-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-mascot:hover .mascot-tooltip {
    opacity: 1;
    visibility: visible;
}

.mascot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.mascot-tooltip p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.mascot-btn {
    display: block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.mascot-btn:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-mascot {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-mascot img {
        width: 60px;
    }
    
    .mascot-hero {
        width: 100px;
    }
    
    .mascot-large {
        width: 80px;
    }
    
    .mascot-speech-bubble {
        flex-direction: column;
        text-align: center;
    }
    
    .speech-bubble::before {
        display: none;
    }
    
    .mascot-tooltip {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mascot-tooltip::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Video completion alert */
.video-completion-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .video-completion-alert {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem 0;
        max-width: none;
    }
}