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

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
    
    .footer {
        padding-bottom: 150px; /* 하단 배너 높이 + 기존 패딩 */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-toggle > span:first-child {
    font-size: 1.5em;
    line-height: 1;
}

.menu-text-pc {
    display: none;
}

.menu-toggle:hover {
    color: #ffc107;
}

/* 메뉴 (PC/모바일 공통) */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #000;
    box-shadow: -2px 0 15px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.menu-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #555;
    background: #000;
}

.menu-header img {
    height: 90px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
    color: #fff;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: #ffc107;
}

.menu-item {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
    font-size: 1.1em;
    font-weight: 500;
}

.menu-item:hover {
    background: #444;
    padding-left: 30px;
    color: #ffc107;
}

/* 메뉴 오버레이 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 히어로 섹션 */
.hero {
    margin-top: -80px;
    width: 100%;
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* 모바일 히어로 문의하기 버튼 */
.hero-mobile-inquiry-btn {
    display: none;
}

@media (max-width: 768px) {
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent !important;
    }

    .header-container {
        background: transparent;
    }

    .hero {
        margin-top: -20px;
    }

    .hero img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-mobile-inquiry-btn {
        display: block;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px 40px;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
        background-size: 200% 200%;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        z-index: 10;
        animation: gradientMove 3s ease infinite, floatButton 3s ease-in-out infinite;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    @keyframes floatButton {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-8px);
        }
    }

    .hero-mobile-inquiry-btn:active {
        transform: translateX(-50%) translateY(2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        animation: none;
    }
}

/* 히어로 문의 카드 (데스크탑만) */
.hero-inquiry-card {
    display: none;
}

@media (min-width: 769px) {
    .hero {
        min-height: 500px;
    }

    .hero-inquiry-card {
        display: block;
        position: absolute;
        top: 250px;
        right: 300px;
        width: 280px;
        background: #000;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    /* 화면이 너무 작을 때는 숨김 처리 */
    @media (max-width: 1200px) {
        .hero-inquiry-card {
            right: 30px;
        }
    }

    @media (max-width: 900px) {
        .hero-inquiry-card {
            display: none;
        }
    }

    .hero-card-logo {
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-card-logo img {
        height: 70px;
        width: auto;
    }

    .hero-inquiry-card .form-group {
        margin-bottom: 12px;
    }

    .hero-inquiry-card .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: #fff;
        font-size: 0.8em;
    }

    .hero-inquiry-card .form-group input,
    .hero-inquiry-card .form-group select,
    .hero-inquiry-card .form-group textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        font-size: 0.9em;
        font-family: inherit;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        transition: border-color 0.3s ease;
    }

    .hero-inquiry-card .form-group input:focus,
    .hero-inquiry-card .form-group select:focus,
    .hero-inquiry-card .form-group textarea:focus {
        outline: none;
        border-color: #ffc107;
        background: #fff;
    }

    .hero-inquiry-card .form-group textarea {
        resize: vertical;
        min-height: 60px;
        font-size: 0.85em;
    }

    .hero-inquiry-card .form-group input,
    .hero-inquiry-card .form-group select {
        font-size: 0.85em;
    }

    .inquiry-submit-btn {
        width: 100%;
        padding: 10px;
        background: #ffc107;
        color: #1d2f4d;
        border: none;
        border-radius: 5px;
        font-size: 0.9em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 5px;
    }

    .inquiry-submit-btn:hover {
        background: #ffd54f;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    }
}

/* 하단 문의 띠지 배너 (데스크탑만) */
.bottom-inquiry-banner {
    display: none;
}

@media (min-width: 769px) {
    .bottom-inquiry-banner {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        padding: 20px 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 998;
    }

    .banner-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .banner-logo {
        flex-shrink: 0;
    }

    .banner-logo img {
        height: 80px;
        width: auto;
    }

    .banner-inquiry-form {
        flex: 1;
    }

    .banner-form-row {
        display: flex;
        align-items: flex-end;
        gap: 15px;
    }

    .bottom-inquiry-banner .form-group {
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }

    .bottom-inquiry-banner .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        color: #fff;
        font-size: 0.85em;
    }

    .bottom-inquiry-banner .form-group input,
    .bottom-inquiry-banner .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        font-size: 0.9em;
        font-family: inherit;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        transition: border-color 0.3s ease;
    }

    .bottom-inquiry-banner .form-group input:focus,
    .bottom-inquiry-banner .form-group select:focus {
        outline: none;
        border-color: #ffc107;
        background: #fff;
    }

    .banner-submit-btn {
        flex-shrink: 0;
        padding: 10px 30px;
        background: #ffc107;
        color: #1d2f4d;
        border: none;
        border-radius: 5px;
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        height: fit-content;
    }

    .banner-submit-btn:hover {
        background: #ffd54f;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    }
}

/* 섹션 이미지 공통 스타일 */
.section-image {
    width: 100%;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-image picture {
    display: block;
}

/* 섹션 공통 스타일 */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

/* 소개 섹션 */
.intro-section {
    background: #f8f9fa;
}

.intro-section p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* 서비스 섹션 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #007bff;
}

.service-card p {
    color: #666;
}

/* 실시간 상담신청 */
.consultation-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
}

.consultation-section h2 {
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    font-size: 2.5em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.consultation-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    z-index: 1;
}

.consultation-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    font-size: 0.95em;
    white-space: normal;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 350px;
    max-width: 450px;
    width: auto;
    z-index: 10;
    animation: slideUp 6s ease-in-out forwards;
}

.consultation-item::before {
    content: '💬';
    font-size: 1.3em;
    margin-bottom: 5px;
}

.consultation-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%) scale(1.02);
}

.consultation-name {
    font-weight: 600;
    font-size: 1.15em;
    color: #fff;
}

.consultation-phone {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1em;
}

.consultation-service {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: inline-block;
    margin-top: 5px;
    width: fit-content;
}

.consultation-inquiry {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95em;
    margin-top: 5px;
    line-height: 1.5;
}

@keyframes slideUp {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        bottom: 450px;
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* 후기 섹션 */
.reviews-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.reviews-section h2 {
    margin-bottom: 60px;
}

.reviews-container {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 100s linear infinite;
    width: fit-content;
    will-change: transform;
}

.review-item {
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 1em;
    color: #333;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 320px;
    max-width: 320px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.review-name {
    font-weight: 600;
    color: #007bff;
    font-size: 1em;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2em;
    letter-spacing: 3px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
}

.review-date {
    font-size: 0.85em;
    color: #999;
    margin-top: 5px;
}

.review-car {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 문의폼 */
.contact-section {
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* 푸터 */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 100px;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ccc;
}

/* 플로팅 버튼들 */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.top-btn {
    background: #333;
}

.phone-btn {
    background: #28a745;
}

.kakao-btn {
    background: #FEE500;
    color: #3C1E1E;
}

/* PC 화면에서 메뉴 텍스트 변경 */
@media (min-width: 769px) {
    .menu-text-mobile {
        display: none;
    }
    
    .menu-text-pc {
        display: inline;
    }
}

/* 모바일 하단 버튼 */
.mobile-bottom-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        gap: 0;
    }

    .mobile-bottom-btn {
        flex: 1;
        padding: 18px 10px;
        border: none;
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kakao-consult-btn {
        background: #FEE500;
        color: #3C1E1E;
    }

    .kakao-consult-btn:active {
        background: #FDD835;
    }

    .inquiry-consult-btn {
        background: #000;
        color: #fff;
    }

    .inquiry-consult-btn:active {
        background: #1a1a1a;
    }
}

/* 모바일 문의 모달 */
.mobile-inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-inquiry-modal.active {
    display: flex;
}

.mobile-modal-content {
    background: #fff;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUpModal 0.3s ease;
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-modal-header h3 {
    font-size: 1.3em;
    color: #333;
    margin: 0;
}

.mobile-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-inquiry-form {
    padding: 20px;
}

.mobile-inquiry-form .form-group {
    margin-bottom: 20px;
}

.mobile-inquiry-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

.mobile-inquiry-form .form-group input,
.mobile-inquiry-form .form-group select,
.mobile-inquiry-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.mobile-inquiry-form .form-group input:focus,
.mobile-inquiry-form .form-group select:focus,
.mobile-inquiry-form .form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
}

.mobile-inquiry-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mobile-submit-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-submit-btn:active {
    background: #1a1a1a;
}

/* 반응형 */
@media (max-width: 768px) {
    .section h2 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .floating-buttons {
        bottom: 70px;
        right: 20px;
    }

    body {
        padding-bottom: 60px; /* 모바일 하단 버튼 높이만큼 공간 확보 */
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .consultation-item {
        font-size: 0.9em;
        padding: 20px 25px;
        min-width: 280px;
        max-width: 90%;
    }

    .review-item {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 30px;
    }
    
    .reviews-container {
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    
    .nav-menu {
        width: 85%;
        max-width: 320px;
    }
}

/* 신청 완료 모달 */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.success-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-modal-content {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUpModal 0.4s ease;
}

@keyframes slideUpModal {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #000;
    font-weight: 700;
    animation: scaleIn 0.4s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-modal-content h2 {
    font-size: 28px;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-modal-content p {
    font-size: 16px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-modal-btn {
    padding: 14px 40px;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.success-modal-btn:hover {
    background: #ffd54f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.success-modal-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .success-modal-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .success-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .success-modal-content h2 {
        font-size: 24px;
    }

    .success-modal-content p {
        font-size: 14px;
    }

    .success-modal-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
}

