/* ===============================================
   DR-DRIVE-02 - Dreamy Lavender Garden
   몽환적이고 부드러운 라벤더 정원 테마
   =============================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Nanum+Myeongjo:wght@400;700&display=swap');

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* CSS Variables */
:root {
    /* Lavender Palette */
    --lavender-50: #FDF4FF;
    --lavender-100: #FAE8FF;
    --lavender-200: #F5D0FE;
    --lavender-300: #E9D5FF;
    --lavender-400: #D8B4FE;
    --lavender-500: #C084FC;
    --lavender-600: #A855F7;
    --lavender-700: #9333EA;
    --lavender-800: #7E22CE;

    /* Theme Colors */
    --primary: #A855F7;
    --primary-light: #C084FC;
    --primary-pale: #E9D5FF;
    --primary-dark: #7E22CE;

    /* Accent */
    --accent-pink: #F472B6;
    --accent-rose: #FB7185;
    --accent-cream: #FEF3C7;

    /* Neutrals */
    --text-dark: #1F1B24;
    --text-body: #4A4453;
    --text-muted: #8B8696;
    --text-light: #B8B3C1;
    --bg-white: #FFFFFF;
    --bg-cream: #FEFBFF;
    --bg-lavender: #FAF5FF;

    /* Typography */
    --font-display: 'Gowun Dodum', sans-serif;
    --font-accent: 'Nanum Myeongjo', serif;
    --font-body: 'Pretendard', sans-serif;

    /* Spacing */
    --header-height: 70px;
    --section-gap: 100px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(168, 85, 247, 0.08);
    --shadow-medium: 0 8px 40px rgba(168, 85, 247, 0.12);
    --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FLOATING BUBBLES BACKGROUND ===== */
.bubbles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(192, 132, 252, 0.05));
    animation: floatBubble 20s ease-in-out infinite;
}

.bubble:nth-child(1) { width: 300px; height: 300px; top: 10%; left: -5%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 200px; height: 200px; top: 60%; right: -3%; animation-delay: -5s; }
.bubble:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 10%; animation-delay: -10s; }
.bubble:nth-child(4) { width: 100px; height: 100px; bottom: 20%; left: 15%; animation-delay: -15s; }
.bubble:nth-child(5) { width: 250px; height: 250px; bottom: 5%; right: 20%; animation-delay: -8s; }

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, -20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s var(--ease-out);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s var(--ease-out);
}

.header.scrolled::before {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.08);
}

.header .container {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
    z-index: 10;
}

.navbar-brand .logo-emoji {
    font-size: 1.8rem;
}

.navbar-brand .brand-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--lavender-100);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
    transition: all 0.3s var(--ease-out);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

/* Mobile Toggle */
.navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border: 2px solid var(--lavender-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 10;
    transition: all 0.3s var(--ease-out);
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.navbar-toggler.active {
    background: var(--primary);
    border-color: var(--primary);
}

.navbar-toggler.active span {
    background: white;
}

.navbar-toggler.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 60px) 0 120px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, var(--lavender-50) 0%, var(--bg-cream) 50%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 2px solid var(--lavender-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--lavender-200);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--lavender-200);
}

.btn-secondary:hover {
    background: var(--lavender-50);
    border-color: var(--primary);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -60px;
    animation-delay: -2s;
}

.hero-floating-card .card-emoji {
    font-size: 2rem;
}

.hero-floating-card .card-text {
    text-align: left;
}

.hero-floating-card .card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-floating-card .card-value {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-decoration .shape-fill {
    fill: var(--bg-white);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--lavender-100);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Asymmetric Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 2px solid var(--lavender-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-card.large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--lavender-50), var(--bg-white));
}

.feature-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card.large .feature-emoji {
    font-size: 3.5rem;
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-card.large .feature-title {
    font-size: 1.4rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white), var(--lavender-50));
    position: relative;
    z-index: 2;
}

/* Horizontal Scroll Pricing */
.pricing-scroll-wrapper {
    margin: 0 -24px;
    padding: 20px 24px 40px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.pricing-cards {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 calc((100vw - 1200px) / 2);
}

.price-card {
    flex: 0 0 320px;
    background: white;
    border: 2px solid var(--lavender-100);
    border-radius: var(--radius-xl);
    padding: 36px;
    scroll-snap-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lavender-200);
    transition: all 0.3s ease;
}

.price-card:hover::before,
.price-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.price-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.price-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.price-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.price-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-amount {
    margin-bottom: 24px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--lavender-100);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* ===== REVIEWS SECTION - MARQUEE ===== */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-wrapper {
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    flex: 0 0 350px;
    background: white;
    border: 2px solid var(--lavender-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s var(--ease-out);
}

.review-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-soft);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-rating span {
    font-size: 1.1rem;
}

.review-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-content {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--lavender-100), var(--lavender-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
}

.review-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-white), var(--lavender-50));
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    color: white;
}

.contact-info h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-item-text h5 {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 4px;
    color: white;
}

.contact-item-text p {
    font-size: 1rem;
    color: white;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--bg-lavender);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-logo .logo-emoji {
    font-size: 1.8rem;
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-link.kakao:hover {
    background: #FEE500;
    color: #3C1E1E;
}

.footer-column h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-out);
}

.cta-btn.apply {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.cta-btn.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.cta-btn.tel {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--lavender-200);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

#backToTop {
    position: fixed;
    bottom: 180px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--lavender-200);
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 997;
    transition: all 0.3s var(--ease-out);
}

#backToTop.visible {
    display: flex;
}

#backToTop:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: calc(var(--header-height) + 60px) 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--lavender-50), var(--bg-cream));
    position: relative;
}

.page-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--lavender-200);
    border-radius: var(--radius-full);
    list-style: none;
    margin-top: 20px;
    box-shadow: var(--shadow-soft);
}

.breadcrumb-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.large {
        grid-row: span 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    /* Mobile Navigation */
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
    }

    .navbar-nav.active {
        right: 0;
    }

    .navbar-nav .nav-link {
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--lavender-100);
    }

    .navbar-toggler {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        pointer-events: auto;
    }

    .header-cta {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: calc(var(--header-height) + 40px) 0 80px;
        min-height: auto;
    }

    .hero-floating-card {
        display: none;
    }

    .wave-decoration svg {
        height: 50px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .price-card {
        flex: 0 0 280px;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 300px;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* CTA */
    .cta-buttons {
        bottom: 16px;
        right: 16px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .cta-btn span {
        display: none;
    }

    .cta-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
    }

    #backToTop {
        bottom: 160px;
        right: 16px;
    }

    .bubble {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-info {
        padding: 28px;
    }

    .price-card {
        flex: 0 0 260px;
        padding: 28px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-lavender { background: var(--lavender-50); }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
