/* ========================================
   메리츠화재 송파본부 리크루팅 랜딩페이지
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Background Light */
.bg-light {
    background-color: #f8f9fa;
}

/* Background Dark */
.bg-dark {
    background-color: #1a1a1a;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: #333;
}

.section-title.text-white {
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ======================================== 
   Hero Section 
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

.cta-button i {
    margin-right: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ======================================== 
   Pain Points Section 
   ======================================== */
.pain-points {
    background-color: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255,107,53,0.1);
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.pain-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.pain-card p {
    color: #666;
    line-height: 1.8;
}

/* ======================================== 
   Benefits Section 
   ======================================== */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0,102,204,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefit-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ======================================== 
   Customer Support Section 
   ======================================== */
.customer-support {
    background-color: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #0066cc;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0066cc;
}

.support-card p {
    color: #555;
    line-height: 1.8;
}

/* ======================================== 
   Filter Section (NEW)
   ======================================== */
.filter {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.filter-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}

.filter-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.filter-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.filter-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.5;
}

.filter-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ======================================== 
   Profile Section 
   ======================================== */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background: white;
}

.profile-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.profile-badge i {
    margin-right: 0.5rem;
}

.profile-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.profile-name {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 2rem;
    font-weight: 600;
}

.profile-career,
.profile-message,
.profile-strengths {
    margin-bottom: 2rem;
}

.profile-career h4,
.profile-message h4,
.profile-strengths h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.profile-career h4 i,
.profile-message h4 i,
.profile-strengths h4 i {
    color: #0066cc;
    margin-right: 0.5rem;
}

.profile-career ul {
    list-style: none;
}

.profile-career ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.profile-career ul li:last-child {
    border-bottom: none;
}

.profile-career ul li strong {
    color: #0066cc;
    font-weight: 600;
}

.profile-message {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.profile-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.strength-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.strength-tags .tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ======================================== 
   Requirements Section 
   ======================================== */
.requirement-list {
    max-width: 800px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: start;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

.req-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 2rem;
}

.req-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.req-content p {
    color: #666;
    line-height: 1.7;
}

/* ======================================== 
   Location Section 
   ======================================== */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0,102,204,0.15);
}

.location-card.main-office {
    border: 2px solid #0066cc;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.location-address {
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.location-address i {
    margin-right: 0.5rem;
}

.location-desc {
    color: #666;
    line-height: 1.6;
}

/* ======================================== 
   Contact Section 
   ======================================== */
.contact {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.meeting-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.form-group label i {
    color: #0066cc;
    margin-right: 0.5rem;
}

.required {
    color: #ff4500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 0.2rem;
}

.checkbox-label span {
    font-size: 1rem;
    color: #333;
}

.privacy-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    padding-left: 1.8rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* ======================================== 
   Footer 
   ======================================== */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-info p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-info i {
    margin-right: 0.5rem;
    color: #0066cc;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-info {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.legal-info strong {
    color: #ffc107;
    font-weight: 600;
}

.compliance-notice {
    font-size: 0.813rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}

.compliance-notice strong {
    color: #ffc107;
    font-weight: 600;
}

.footer-copyright {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.6) !important;
}

/* ======================================== 
   Responsive Design 
   ======================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pain-grid,
    .benefit-grid,
    .support-grid,
    .filter-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .meeting-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-legal {
        padding: 1.2rem 1.5rem;
        text-align: left;
    }
    
    .legal-info,
    .compliance-notice {
        font-size: 0.813rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .pain-card,
    .benefit-card,
    .support-card,
    .filter-card {
        padding: 1.5rem;
    }
    
    .footer-legal {
        padding: 1rem 1.2rem;
        border-radius: 8px;
    }
    
    .legal-info,
    .compliance-notice {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}