@charset "utf-8";
/* CSS Document */

/*****************
	STYLE
*****************/
        /* --------------------------------------------------
         * 1) 메인 비주얼 Swiper
         * -------------------------------------------------- */
        .main-swiper {
            width: 100%;
            height: 100vh;
        }

        .main-swiper .swiper-slide {
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-swiper .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.25);
            z-index: 1;
        }

        .main-slide-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        /* --------------------------------------------------
         * 2) 변호사 소개 영역
         * -------------------------------------------------- */
        .lawyer-section {
            background-color: var(--brand-gray);
            position: relative;
            padding: 80px 0 80px 0;
            overflow: hidden;
            border-top: 1px solid #e5e5e5;
        }

        .fixed-content-row {
            min-height: 540px;
            align-items: flex-end;
        }

        .fixed-info-box {
            padding-bottom: 80px;
            z-index: 5;
        }

        .lawyer-section .intro-subtitle {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--brand-gold);
            text-transform: uppercase;
            margin-bottom: 25px;
            display: block;
        }

        .lawyer-quote {
            font-family: 'Noto Serif KR', serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--brand-navy);
            margin-bottom: 45px;
            letter-spacing: -0.5px;
            position: relative;
        }

        .lawyer-quote::before {
            content: '“';
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            color: rgba(11, 37, 69, 0.15);
            position: absolute;
            left: -25px;
            top: -25px;
        }

        .lawyer-text-swiper .swiper-slide {
            display: block !important;
            opacity: 0 !important;
            transition: opacity 0.5s ease-in-out;
            height: auto;
        }

        .lawyer-text-swiper .swiper-slide-active {
            opacity: 1 !important;
        }

        .lawyer-meta .rank {
            font-size: 15px;
            color: #666;
            margin-right: 8px;
            font-weight: 500;
        }

        .lawyer-meta .name {
            font-family: 'Noto Serif KR', serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--brand-navy);
            display: inline-block;
        }

        .profile-divider-col {
            border-left: 1px solid #dcdcdc;
            padding-left: 35px;
        }

        .lawyer-nav-container {
            display: inline-flex;
            align-items: center;
            margin-top: 30px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: #ffffff;
            padding: 6px 14px;
            border-radius: 4px;
        }

        .lawyer-nav-container button {
            background: none;
            border: none;
            color: #555;
            font-size: 14px;
            cursor: pointer;
            padding: 0 10px;
        }

        .lawyer-nav-container button:hover {
            color: var(--brand-gold);
        }

        .lawyer-nav-container .nav-divider {
            color: #ddd;
            font-size: 12px;
            user-select: none;
        }

        .lawyer-profile-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .lawyer-profile-list li {
            font-size: 15px;
            color: #444;
            margin-bottom: 10px;
            position: relative;
            padding-left: 12px;
        }

        .lawyer-profile-list li::before {
            content: '·';
            position: absolute;
            left: 0;
            top: -2px;
            font-weight: bold;
            color: var(--brand-gold);
            font-size: 18px;
        }

        .lawyer-img-swiper {
            height: 540px;
            overflow: hidden;
        }

        .lawyer-img-swiper .swiper-slide {
            display: flex !important;
            align-items: flex-end;
            justify-content: flex-end;
            opacity: 0 !important;
            transition: opacity 0.6s ease-in-out;
        }

        .lawyer-img-swiper .swiper-slide-active {
            opacity: 1 !important;
        }

        .lawyer-img-swiper img {
            max-height: 540px;
            width: auto;
            border-radius: 15px;
            object-fit: contain;
            filter: drop-shadow(0px -5px 15px rgba(0, 0, 0, 0.05));
        }

        /* --------------------------------------------------
         * 3) 활동 영역 (Business Area)
         * -------------------------------------------------- */
        .business-section .container {
            max-width: 95%;
            width: 100%;
        }

        .business-section {
            background-color: #ffffff;
            padding: 100px 0;
        }

        .business-header {
            margin-bottom: 50px;
        }

        .biz-subtitle {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: var(--brand-gold);
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .biz-title {
            font-family: 'Noto Serif KR', serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.4;
            color: var(--brand-navy);
            letter-spacing: -1px;
        }

        .counter-box {
            padding-left: 20px;
        }

        .counter-icon-wrap {
            font-size: 28px;
            color: var(--brand-navy);
            margin-bottom: 5px;
            opacity: 0.8;
        }

        .counter-num {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--brand-navy);
            line-height: 1.1;
        }

        .counter-num .unit {
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #666;
            margin-left: 2px;
        }

        .counter-label {
            font-size: 13px;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
        }

        .business-flex-container {
            display: flex;
            margin: 0 auto;
            height: 520px;
            gap: 15px;
        }

        .biz-card {
            position: relative;
            flex: 1;
            height: 100%;
            background-size: cover;
            background-position: center;
            border-radius: 50px 0;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
            filter: grayscale(20%) brightness(90%);
        }

        .business-flex-container:hover .biz-card {
            flex: 0.6;
            filter: grayscale(50%) brightness(70%);
        }

        .business-flex-container .biz-card:hover,
        .business-flex-container .biz-card.active {
            flex: 3.2;
            filter: grayscale(0%) brightness(100%);
        }

        .biz-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 40px 120px 40px;
            color: #ffffff;
            z-index: 2;
            box-sizing: border-box;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
            transform: translateY(80px);
            will-change: transform;
            backface-visibility: hidden;
            transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .card-eng {
            font-family: 'Playfair Display', serif;
            font-size: 12px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            display: block;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .card-kor {
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
        }

        .card-desc {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            max-width: 450px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .biz-card:hover .biz-card-content,
        .biz-card.active .biz-card-content {
            transform: translateY(0);
        }

        .biz-card:hover .card-desc,
        .biz-card.active .card-desc {
            opacity: 1;
            transition: opacity 0.4s ease 0.25s;
        }

        .business-flex-container:hover .biz-card.active:not(:hover) .biz-card-content {
            transform: translateY(80px);
        }

        .business-flex-container:hover .biz-card.active:not(:hover) .card-desc {
            opacity: 0;
            transition: opacity 0.15s ease;
        }

        
        

        /* --------------------------------------------------
         * 6) 통합 반응형 미디어 쿼리
         * -------------------------------------------------- */
        @media (max-width: 991.98px) {
            .lawyer-section {
                padding-top: 80px;
            }

            .fixed-content-row {
                min-height: auto;
                align-items: center;
            }

            .fixed-info-box {
                padding-bottom: 20px;
            }

            .profile-divider-col {
                border-left: none;
                padding-left: 0;
                margin-top: 20px;
            }

            .lawyer-img-swiper {
                height: 380px;
                margin-top: 20px;
            }

            .lawyer-img-swiper img {
                max-height: 380px;
            }

            .lawyer-img-swiper .swiper-slide {
                justify-content: center;
            }

            .lawyer-quote {
                font-size: 21px;
            }

            .biz-title {
                font-size: 26px;
            }

            .business-flex-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                width: 100%;
                max-width: 100%;
                height: auto;
                gap: 15px;
            }

            .biz-card {
                height: 280px;
                flex: none !important;
                filter: grayscale(0%) brightness(90%) !important;
            }

            .biz-card-content {
                transform: none !important;
                padding: 25px 20px !important;
                transition: none !important;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
            }

            .card-desc {
                opacity: 1 !important;
                transition: none !important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .credentials-section {
                padding: 60px 0;
            }

            .cert-title {
                font-size: 24px;
            }

            .cert-nav-container button {
                width: 38px;
                height: 38px;
                font-size: 12px;
            }

            .contact-section {
                padding: 70px 0;
            }

            .consult-wrapper,
            .contact-info-card {
                padding: 30px 20px;
            }

            .phone-number {
                font-size: 28px;
            }

            .contact-title {
                font-size: 26px;
            }
        }
