/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warriors Gold & Black Theme */
    /* Primary Colors - Gold */
    --primary-color: #FDB927;
    --primary-dark: #D4991A;
    --primary-light: #FFC554;
    
    /* Secondary Colors - Blue */
    --secondary-color: #1D428A;
    --secondary-dark: #15336B;
    --secondary-light: #2E5CB8;
    
    /* Accent - Yellow */
    --accent-yellow: #FFD700;
    --accent-gold: #C9A227;
    
    /* Neutral Colors - Black & Dark */
    --dark: #000000;
    --dark-light: #1a1a1a;
    --dark-gray: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f3f4f6;
    --white: #ffffff;
    
    /* Gradients - Gold & Black */
    --gradient-primary: linear-gradient(135deg, #FDB927 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(29, 66, 138, 0.7) 100%);
    --gradient-gold-blue: linear-gradient(135deg, #FDB927 0%, #1D428A 100%);
    
    /* Shadows - Gold Glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(253, 185, 39, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--dark);
    overflow-x: hidden;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
    box-shadow: var(--shadow-xl);
    background: rgba(0, 0, 0, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(253, 185, 39, 0.5);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    background-image: url('https://sspark.genspark.ai/cfimages?u1=72m9XxJUpEN5CJbhPkIRJgHU0loL9CX%2FsFFSKEOIGNfbfuMe4mE27bO2SJ3F6dOjpBLItZQC%2FKuwwDjIwU436b7FMbqfP2YmalU7RapzZ7X0STHvFzf3Jh1qQprGqQRd1gSLSYeHSMy4Ilx%2BPpp5QqvBZiezxABFOGFsal%2FAziHsCoZD6108mPd0pxEqWedRP9UOzKrsz3w9rkqkT%2FhwEbguKAg%3D&u2=mC0HuGgC8Xo%2BRfcn&width=2560');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 8rem 0 4rem;
}

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

.hero-title .highlight {
    color: var(--primary-color);
    display: inline-block;
    text-shadow: 0 0 30px rgba(253, 185, 39, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(253, 185, 39, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 2rem;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* ===== About Section ===== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.about-image-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-gold);
    border: 3px solid var(--primary-color);
}

.about-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 0 20px rgba(253, 185, 39, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(253, 185, 39, 0.5);
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(253, 185, 39, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--dark-gray);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid var(--dark-gray);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
    background: rgba(253, 185, 39, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(253, 185, 39, 0.4);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* ===== Team Section ===== */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--gray-light);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.team-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
}

.team-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-detail-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.team-detail-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.team-detail-item span {
    color: var(--dark-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-experience {
    background: var(--light);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.team-experience-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2rem;
}

.team-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.experience-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.experience-item span {
    color: var(--dark-light);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--dark-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
    background: rgba(253, 185, 39, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1rem;
}

/* ===== Premium Gallery Section ===== */
.premium-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--dark-gray);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

/* ===== Process Section ===== */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(253, 185, 39, 0.3);
}

.process-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    z-index: 1;
    border: 3px solid var(--dark-light);
}

.process-content {
    flex: 1;
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-content p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===== Advantages Section ===== */
.advantages {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--dark-gray);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
    background: rgba(253, 185, 39, 0.05);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

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

.advantage-card p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--dark-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid var(--dark-gray);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.pricing-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.05);
}

.pricing-content {
    padding: 2.5rem;
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-features i.fa-gift {
    color: var(--accent-yellow);
}

.pricing-features span {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 1rem;
}

.pricing-features strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(253, 185, 39, 0.3);
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-light);
    border: 2px solid var(--dark-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(253, 185, 39, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-form-wrapper {
    background: var(--dark-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-color);
}

.contact-form-wrapper:hover {
    box-shadow: 0 0 40px rgba(253, 185, 39, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--dark-light);
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--dark-light);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(253, 185, 39, 0.3);
    background: rgba(253, 185, 39, 0.05);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Contact Section (New Design) ===== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

/* Kakao Main Hero Section */
.kakao-main-section {
    margin: 3rem 0;
}

.kakao-hero-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(253, 185, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.kakao-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 185, 39, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.kakao-hero-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.kakao-hero-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(253, 185, 39, 0.5);
}

.kakao-hero-description {
    font-size: 1.25rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-kakao-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(253, 185, 39, 0.4);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-kakao-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(253, 185, 39, 0.6);
    background: var(--accent-yellow);
}

.btn-kakao-large i {
    font-size: 1.75rem;
}

.kakao-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 185, 39, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.feature-badge i {
    font-size: 1.25rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--dark-gray);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 185, 39, 0.3);
}

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

.contact-icon i {
    font-size: 2rem;
    color: var(--dark);
}

.contact-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-yellow);
    transform: scale(1.05);
}

/* Display Only Text (No Click) */
.contact-display-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    cursor: default;
    user-select: text;
}

.contact-info-display {
    cursor: default;
}

.contact-info-display:hover {
    transform: none;
    border-color: var(--dark-gray);
    box-shadow: var(--shadow-lg);
}

.contact-time {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Consultation Tips */
.consultation-tips {
    background: var(--dark);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--dark-gray);
}

.consultation-tips h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-light);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--dark-gray);
    transition: var(--transition);
}

.tip-item:hover {
    border-color: var(--primary-color);
    background: rgba(253, 185, 39, 0.05);
}

.tip-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tip-item span {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .kakao-hero-card {
        padding: 3rem 1.5rem;
    }
    
    .kakao-hero-card h3 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .kakao-hero-description {
        font-size: 1.1rem;
    }
    
    .btn-kakao-large {
        font-size: 1.25rem;
        padding: 18px 40px;
        width: 100%;
        justify-content: center;
    }
    
    .kakao-features {
        gap: 1rem;
    }
    
    .feature-badge {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon i {
        font-size: 1.75rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.25rem;
    }
    
    .contact-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .consultation-tips {
        padding: 2rem 1.5rem;
    }
    
    .consultation-tips h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .kakao-hero-card {
        padding: 2.5rem 1.25rem;
    }
    
    .kakao-hero-icon {
        font-size: 3rem;
    }
    
    .kakao-hero-card h3 {
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }
    
    .kakao-hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .btn-kakao-large {
        font-size: 1.125rem;
        padding: 16px 32px;
    }
    
    .btn-kakao-large i {
        font-size: 1.5rem;
    }
    
    .kakao-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-link {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-time {
        font-size: 0.95rem;
    }
    
    .tip-item {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .tip-item i {
        font-size: 1.25rem;
    }
}

/* Old Contact Styles (Keep for compatibility) */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-section {
    background: var(--dark);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--dark-gray);
    box-shadow: var(--shadow-lg);
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(253, 185, 39, 0.4);
}

.contact-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.contact-form .required {
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--dark-gray);
    border-radius: 10px;
    background: var(--dark-light);
    color: var(--white);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(253, 185, 39, 0.3);
    background: rgba(253, 185, 39, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 2px solid #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
    display: block;
}

/* Kakao Section */
.kakao-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kakao-card {
    background: var(--gradient-gold-blue);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.kakao-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.kakao-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.kakao-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kakao-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-kakao {
    background: var(--white);
    color: var(--dark);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-kakao:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--accent-yellow);
}

.kakao-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.info-item i {
    color: var(--white);
    font-size: 1.125rem;
}

.contact-benefits {
    background: var(--dark);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--dark-gray);
}

.contact-benefits h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(253, 185, 39, 0.4);
}

.contact-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.contact-benefits li i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo-image {
    display: none;
}

.footer-logo span {
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(253, 185, 39, 0.5);
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-links li i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-light);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(253, 185, 39, 0.6);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-gold);
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-color);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .about-content,


    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

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

    .team-experience-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .about-image-banner {
        height: 250px;
    }
}

/* ===== Mobile Floating Contact Button ===== */
.mobile-contact-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--gradient-primary);
        color: var(--dark);
        padding: 16px 32px;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(253, 185, 39, 0.5);
        animation: pulse 2s infinite;
        transition: var(--transition);
        border: 2px solid var(--primary-color);
        min-width: 160px;
    }

    .mobile-contact-btn:active {
        transform: translateX(-50%) translateY(-1px);
        box-shadow: 0 2px 10px rgba(253, 185, 39, 0.6);
    }

    .mobile-contact-btn i {
        margin-right: 8px;
        font-size: 1.25rem;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(253, 185, 39, 0.5);
        }
        50% {
            box-shadow: 0 4px 30px rgba(253, 185, 39, 0.8);
        }
    }
    
    /* 로고 모바일 크기 조정 */
    .logo-image {
        height: 45px;
    }
    
    /* 네비게이션 높이 증가 */
    .navbar {
        padding: 1.25rem 0;
    }
}

@media (max-width: 640px) {
    /* 로고 더 크게 */
    .logo-image {
        height: 50px;
    }
    
    .navbar {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-item {
        gap: 1rem;
    }

    .process-content {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

    .about-image-banner {
        height: 200px;
        margin-bottom: 2rem;
    }
}
