/* ===================================
   Custom Font
   =================================== */
@font-face {
    font-family: 'GangwonEducationTteontteon';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4d8f;
    --primary-yellow: #f5a623;
    --dark-bg: #0a1628;
    --darker-bg: #050d1a;
    --card-bg: #132038;
    --accent-red: #ef4444;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 60px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 80px;
    }
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 60px;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 80px;
    }
}

.logo {
    display: flex;
    align-items: center;
    background: transparent;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
}

.logo-image:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .logo-image {
        height: 55px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 60px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.nav {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 40px;
        align-items: center;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        border: none;
    }
    
    .nav-link {
        padding: 0;
        border: none;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.cta-button:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(245, 166, 35, 0.3);
}

/* ===================================
   Hero Section - LAW LAB Style
   =================================== */
.hero {
    position: relative;
    min-height: 75vh;
    background: url('../images/hero-back.jpg') center center / cover no-repeat;
    margin-top: 0;
    padding-top: 70px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    min-height: calc(75vh - 70px);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-container {
        min-height: calc(100vh - 70px);
    }
}

/* Hero Left - Title */
.hero-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}

@media (min-width: 768px) {
    .hero-left {
        text-align: left;
        align-items: flex-start;
    }
}

/* 법무법인 뱃지 */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: badgeShine 5s ease-in-out infinite;
}

.hero-badge i {
    color: var(--primary-yellow);
    font-size: 16px;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes colorFill {
    0% {
        color: rgba(255, 255, 255, 0.75);
    }
    100% {
        color: var(--primary-yellow);
    }
}

@keyframes underlineDraw {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* 타이틀 */
.hero-title {
    font-family: 'GangwonEducationTteontteon', 'Noto Sans KR', sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -4px;
    margin: 0 0 6px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* 설명 */
.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 0 0 30px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 700;
    animation: colorFill 1s ease-out 1.2s forwards;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    animation: underlineDraw 0.8s ease-out 1.4s forwards;
}

/* 상담 예약 버튼 */
.hero-cta-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, var(--primary-yellow) 100%);
}

.hero-cta-button:active {
    transform: translateY(0);
}

/* Hero Right - Image */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 60px 0;
        grid-template-columns: auto auto;
        gap: 7%;
        max-width: 1600px;
        justify-content: center;
    }
    
    .hero-left {
        align-items: flex-start;
        padding-right: 0;
        text-align: left;
    }
    
    .hero-title {
        font-size: 110px;
        margin-bottom: 5px;
    }
    
    .hero-description {
        font-size: 19px;
    }
    
    .hero-right {
        justify-content: flex-start;
        padding-left: 0;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 100px 0;
        gap: 7%;
        grid-template-columns: auto auto;
        justify-content: center;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-right {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 130px;
        letter-spacing: -5px;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 20px;
        line-height: 1.9;
    }
}

.profile-image-wrapper {
    width: auto;
    max-width: none;
    position: relative;
    margin: 0;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.5s forwards;
    display: none;
}

@media (min-width: 768px) {
    .profile-image-wrapper {
        display: block;
    }
}

.profile-main-image {
    width: auto;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: contain;
    object-position: center center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    border: none;
    border-radius: 0;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}

.scroll-hint i {
    font-size: 20px;
    color: var(--primary-yellow);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   Section Title
   =================================== */
.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 0;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.1s forwards;
}

/* Mobile line break */
.mobile-break {
    display: block;
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
}
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-red));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 50px;
}

/* ===================================
   Success Cases
   =================================== */
.success-cases {
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
}

.success-cases .section-subtitle {
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Tab Navigation */
.cases-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.tab-button {
    padding: 12px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tab-button:hover::before {
    width: 300px;
    height: 300px;
}

.tab-button:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.tab-button.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    animation: tabPulse 0.5s ease;
}

@keyframes tabPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cases List */
.cases-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cases-list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.case-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #4a4a4a;
    border-left: 4px solid var(--primary-yellow);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.case-item:hover {
    background: #555555;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.case-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-yellow);
    min-width: 40px;
    font-family: 'GangwonEducationTteontteon', 'Noto Sans KR', sans-serif;
}

.case-info {
    flex: 1;
}

.case-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.case-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 8px;
}

.case-result {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #000;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* Show More Button */
.show-more-btn {
    display: none;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 767px) {
    .show-more-btn {
        display: flex;
    }
    
    .cases-list .case-item:nth-child(n+6) {
        display: none;
    }
    
    .cases-list.expanded .case-item {
        display: flex;
    }
}

.show-more-btn:hover {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
}

.show-more-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .show-more-icon {
    transform: rotate(180deg);
}

/* ===================================
   Principles
   =================================== */
.principles {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/hero-back.jpg') center center / cover no-repeat;
}

.principles .section-title {
    color: var(--white);
    font-size: 32px;
}



.principles .section-subtitle {
    color: var(--primary-yellow);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 15px;
}

.principles-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .principles-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .principle-item:nth-child(1),
    .principle-item:nth-child(2) {
        grid-column: span 1;
    }
    
    .principle-item:nth-child(3),
    .principle-item:nth-child(4),
    .principle-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .principles-list {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .principle-item:nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 1;
    }
    
    .principle-item:nth-child(2) {
        grid-column: 4 / 6;
        grid-row: 1;
    }
    
    .principle-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    
    .principle-item:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2;
    }
    
    .principle-item:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2;
    }
}

.principle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .principle-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 30px;
    }
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.2);
}

.principle-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    min-width: auto;
}

@media (min-width: 768px) {
    .principle-number {
        min-width: 40px;
    }
}

.principle-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
}

.principle-content h3 .highlight {
    color: var(--primary-yellow);
    font-weight: 900;
}

.principle-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ===================================
   Features
   =================================== */
.features {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
}

.features .container {
    max-width: 1200px;
}

/* Features Intro */
.features-intro {
    text-align: center;
    margin-bottom: 60px;
}

.features-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.features-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.features-title br {
    display: none;
}

@media (min-width: 768px) {
    .features-lead {
        font-size: 18px;
    }
    
    .features-title {
        font-size: 42px;
    }
    
    .features-title br {
        display: block;
    }
}

.features-company {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@media (min-width: 768px) {
    .features-company {
        font-size: 28px;
    }
}

.features-company .highlight-yellow {
    color: var(--primary-yellow);
    font-weight: 900;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.features-grid .feature-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.features-grid .feature-card:nth-child(1) {
    animation-delay: 0.8s;
}

.features-grid .feature-card:nth-child(2) {
    animation-delay: 1s;
}

.features-grid .feature-card:nth-child(3) {
    animation-delay: 1.2s;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Feature Card */
.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .feature-card {
        text-align: left;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #f59e0b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(245, 166, 35, 0.15);
    font-family: 'GangwonEducationTteontteon', 'Noto Sans KR', sans-serif;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(245, 166, 35, 0.3);
    transform: scale(1.1);
}

.feature-content {
    position: relative;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.feature-title .highlight-number {
    color: var(--primary-yellow);
    font-weight: 900;
}

.feature-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.2px;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 40px 30px;
    }
    
    .feature-title {
        font-size: 21px;
        margin-bottom: 18px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* ===================================
   Blog Link Section
   =================================== */
.blog-link {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.blog-link-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-link-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@media (min-width: 768px) {
    .blog-link-title {
        font-size: 32px;
    }
}

.blog-link-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

@media (min-width: 768px) {
    .blog-link-description {
        font-size: 16px;
    }
}

.blog-link-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.blog-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, var(--primary-yellow) 100%);
}

.blog-link-button:active {
    transform: translateY(-1px);
}

.blog-link-button i:first-child {
    font-size: 18px;
}

.blog-link-button i:last-child {
    font-size: 14px;
    animation: arrowSlide 1.5s ease-in-out infinite;
}

.blog-link-button:hover i:last-child {
    animation: arrowSlideHover 0.8s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes arrowSlideHover {
    0%, 100% {
        transform: translateX(3px);
    }
    50% {
        transform: translateX(8px);
    }
}

/* ===================================
   Location Section
   =================================== */
.location {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0d0d0d 0%, #1a1a1a 100%);
}

.location .section-subtitle {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Map */
.location-map {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    height: 100%;
}

@media (min-width: 768px) {
    .location-map {
        min-height: 400px;
    }
}

.location-map iframe {
    display: block;
}

/* Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .location-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
}

.location-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-2px);
}

.location-card.highlight {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-color: rgba(245, 166, 35, 0.3);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 20px;
    color: var(--primary-yellow);
}

.location-details {
    flex: 1;
}

.location-details h3 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-details p {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-details .phone-number {
    font-size: 24px;
    color: var(--primary-yellow);
    font-family: 'GangwonEducationTteontteon', 'Noto Sans KR', sans-serif;
    letter-spacing: 1px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #f59e0b;
}

.location-link i {
    font-size: 12px;
}

.direct-call-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.location-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.location-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, var(--primary-yellow) 100%);
}

.location-call-btn:active {
    transform: translateY(-1px);
}

.location-call-btn i {
    font-size: 20px;
}

.location-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.location-notice i {
    color: var(--primary-yellow);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/hero-back.jpg') center center / cover no-repeat;
    position: relative;
}

.reviews .section-title {
    margin-bottom: 10px;
}

.reviews .section-subtitle {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reviews-slider {
        padding: 0 25px;
    }
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    min-height: 400px;
    height: auto;
    animation: fadeIn 0.5s ease;
    display: none;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .review-card {
        padding: 30px 25px;
        min-height: 480px;
    }
}

.review-card.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--primary-yellow);
    font-size: 20px;
    margin: 0 3px;
}

@media (max-width: 768px) {
    .review-stars {
        margin-bottom: 18px;
    }
    
    .review-stars i {
        font-size: 22px;
        margin: 0 4px;
    }
}

.review-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    text-align: left;
    overflow-y: auto;
    max-height: 280px;
}

@media (max-width: 768px) {
    .review-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
        max-height: 320px;
    }
}

@media (min-width: 768px) {
    .review-text {
        font-size: 16px;
        line-height: 2;
    }
}

.review-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 20px;
    color: var(--primary-yellow);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .review-category {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
}

.slider-btn.prev {
    left: -60px;
}

.slider-btn.next {
    right: -60px;
}

@media (max-width: 1024px) {
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .slider-btn {
        width: 30px;
        height: 30px;
        background: transparent;
        backdrop-filter: none;
        border: none;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .slider-btn:hover {
        background: transparent;
        color: var(--primary-yellow);
    }
    
    .slider-btn.prev {
        left: -5px;
    }
    
    .slider-btn.next {
        right: -5px;
    }
    
    .slider-btn i {
        font-size: 24px;
        font-weight: bold;
    }
}

.slider-btn i {
    font-size: 16px;
}

/* Slider Dots */
.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-yellow);
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(245, 166, 35, 0.6);
}

/* ===================================
   Consultation Form
   =================================== */
.consultation {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0d0d0d 0%, #1a1a1a 100%);
}

.consultation .section-subtitle {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.consult-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-count {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
}

.char-count.warning {
    color: #f59e0b;
}

.char-count.limit {
    color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.submit-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-label i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.contact-value {
    font-size: 14px;
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Captcha */
.captcha-group {
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        gap: 12px;
    }
}

.captcha-display {
    flex: 1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    color: var(--primary-yellow);
    font-family: 'Courier New', monospace;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.captcha-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    pointer-events: none;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .captcha-refresh {
        width: 100%;
        height: 45px;
    }
}

.captcha-refresh:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
    transform: rotate(180deg);
}

.captcha-refresh i {
    transition: transform 0.3s ease;
}

/* Privacy Link */
.privacy-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .checkbox-label {
        align-items: flex-start;
    }
    
    .privacy-link {
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }
}

/* ===================================
   Floating Buttons
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-buttons.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
    font-size: 20px;
}

/* Phone Button - Yellow */
.floating-btn.phone {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
    border-color: var(--primary-yellow);
    color: #000;
}

.floating-btn.phone:hover {
    background: linear-gradient(135deg, #f59e0b 0%, var(--primary-yellow) 100%);
}

/* Kakao Button - Yellow */
.floating-btn.kakao {
    background: #FEE500;
    border-color: #FEE500;
    color: #000;
}

.floating-btn.kakao:hover {
    background: #FDD835;
}

/* Consult Button - Red */
.floating-btn.consult {
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
    border-color: var(--accent-red);
    color: var(--white);
}

.floating-btn.consult:hover {
    background: linear-gradient(135deg, #dc2626 0%, var(--accent-red) 100%);
}

/* Scroll Top Button */
.floating-btn.scroll-top {
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-btn.scroll-top:hover {
    background: var(--primary-yellow);
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
}

/* ===================================
   Privacy Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: var(--primary-yellow);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 25px 0 12px 0;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.modal-body ul li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.modal-btn {
    padding: 12px 40px;
    background: var(--primary-yellow);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Grid */
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Left Section */
.footer-left {
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-left {
        align-items: center;
        text-align: center;
    }
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 25px;
    margin-left: -8px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-logo {
        margin-left: 0;
    }
}

.footer-lawyer {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .footer-heading {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .footer-heading {
        margin-top: 70px;
    }
}

/* Right Section */
.footer-right {
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-right {
        align-items: center;
    }
}



.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--primary-yellow);
}

.footer-contact-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ===================================
   Success/Error Messages
   =================================== */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    white-space: pre-line;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}