/* ============================================
   KJ YOUNG Clinic - Premium Landing Page
   Style Sheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --pink-primary: #f1748f;
    --pink-hover: #e0637e;
    --pink-light: #fdf2f8;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --gold: #d4af37;
    --red-promo: #d32f2f;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --line-green: #00B900;
    --fb-blue: #1877F2;
    --ig-pink: #E1306C;
    --font-body: 'Prompt', sans-serif;
    --font-heading: 'Mitr', sans-serif;
    --radius-full: 9999px;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-blob: 2.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: #fafafa;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--pink-200);
    color: #831843;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.section-subtitle {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- BACKGROUND PATTERNS --- */
.bg-hex-pattern {
    background-color: var(--pink-light);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0l20 10v20L20 40 0 30V10z' fill-rule='evenodd' fill='%23f9e4ed' fill-opacity='0.5'/%3E%3C/svg%3E");
}

.bg-grid-pattern {
    background-color: #ffe5ec;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 40px 40px;
}

.gold-floral-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 C 20 20, 40 10, 50 10 C 60 10, 80 20, 90 50 C 80 80, 60 90, 50 90 C 40 90, 20 80, 10 50 Z' fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.4'/%3E%3C/svg%3E");
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(241, 116, 143, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(241, 116, 143, 0.2); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--pink-primary);
}

.btn-default {
    background-color: var(--pink-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}
.btn-default:hover {
    background-color: var(--pink-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}
.btn-ghost:hover {
    background-color: var(--pink-50);
    color: var(--pink-primary);
}

.btn-white {
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
}

.btn-sm {
    height: 2.25rem;
    padding: 0 1rem;
    font-size: 0.75rem;
}

.btn-md {
    height: 2.5rem;
    padding: 0 1.5rem;
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

/* Social buttons */
.btn-line {
    border: 2px solid var(--line-green);
    color: var(--line-green);
    background: white;
}
.btn-line:hover {
    background: var(--line-green);
    color: white;
}
.btn-facebook {
    border: 2px solid var(--fb-blue);
    color: var(--fb-blue);
    background: white;
}
.btn-facebook:hover {
    background: var(--fb-blue);
    color: white;
}
.btn-instagram {
    border: 2px solid var(--ig-pink);
    color: var(--ig-pink);
    background: white;
}
.btn-instagram:hover {
    background: var(--ig-pink);
    color: white;
}

/* --- CARDS --- */
.card {
    border-radius: 1rem;
    border: 1px solid var(--pink-100);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* --- BADGES --- */
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-full);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    gap: 0.5rem;
}

.badge-default {
    background: white;
    border: 2px dashed var(--pink-primary);
    color: var(--pink-primary);
}

.badge-solid {
    background: var(--pink-primary);
    color: white;
    border: 2px solid transparent;
}

.badge-dark {
    background: rgba(31, 41, 55, 0.8);
    color: white;
    backdrop-filter: blur(12px);
    border: 2px solid transparent;
}

.badge-lg {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--pink-100);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pink-primary);
    letter-spacing: 0.1em;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.nav-link:hover {
    background: var(--pink-50);
    color: var(--pink-primary);
}

.nav-link.active {
    background: var(--pink-50);
    color: var(--pink-primary);
    box-shadow: var(--shadow-sm);
}

.nav-cta {
    margin-left: 1rem;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 0.375rem;
    transition: color 0.2s;
}

.mobile-toggle:hover {
    color: var(--pink-primary);
}

.mobile-toggle:focus {
    outline: 2px solid var(--pink-primary);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .mobile-toggle { display: none; }
}

.mobile-nav {
    display: none;
    background: white;
    border-bottom: 1px solid var(--pink-100);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1rem 1.5rem;
    animation: slideInFromTop 0.3s ease-out;
}

.mobile-nav.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav { display: none !important; }
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--pink-50);
    color: var(--pink-primary);
}

.mobile-nav-cta {
    padding: 1rem;
    margin-top: 0.5rem;
}

.mobile-nav-cta .btn {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
}

.hero-sparkle {
    position: absolute;
    color: var(--gold);
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.hero-sparkle-1 {
    top: 6rem;
    left: 2.5rem;
    width: 2rem;
    height: 2rem;
}

.hero-sparkle-2 {
    bottom: 5rem;
    right: 5rem;
    width: 3rem;
    height: 3rem;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
    }
}

.hero-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-text {
        width: 50%;
        text-align: left;
    }
}

.hero-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-brand h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--pink-primary);
    line-height: 1.1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

@media (min-width: 768px) {
    .hero-brand h2 { font-size: 4.5rem; }
}

.hero-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--gray-500);
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .hero-brand h3 { font-size: 1.25rem; }
}

.hero-slogan {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-slogan { font-size: 1.5rem; }
}

.hero-actions {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

@media (min-width: 1024px) {
    .hero-actions { justify-content: flex-start; }
}

.hero-image {
    width: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-image { width: 50%; }
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    aspect-ratio: 4/5;
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 8px solid white;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--pink-primary);
    mix-blend-mode: overlay;
    opacity: 0.1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about-grid { flex-direction: row; }
}

.about-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .about-image { width: 50%; }
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.about-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .about-content { width: 50%; }
}

.about-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-label-line {
    height: 1px;
    width: 3rem;
    background: var(--gold);
}

.about-label h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.about h2 {
    font-size: 2.25rem;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about h2 { font-size: 3rem; }
}

.about h2 span {
    color: var(--pink-primary);
}

.about h4 {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
}

.about-desc {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
}

.about-feature-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 6rem 0;
    background: rgba(253, 242, 248, 0.5);
    position: relative;
    border-top: 1px solid var(--pink-100);
    border-bottom: 1px solid var(--pink-100);
}

.services-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    border-radius: 1rem;
    border: 1px solid var(--pink-100);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.8), transparent);
}

.service-card-image h3 {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.service-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card-subtitle {
    color: var(--pink-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-subtitle svg {
    width: 1rem;
    height: 1rem;
}

.service-card-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.portfolio-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

.ba-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ba-slider h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
    .ba-slider-container { aspect-ratio: 4/3; }
}

.ba-slider-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ba-before-clip {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.ba-before-clip img {
    filter: contrast(0.85) brightness(0.9);
}

.ba-badge-before {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 15;
}

.ba-badge-after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.ba-slider-handle svg {
    width: 1rem;
    height: 1rem;
}

.ba-slider-handle .divider {
    width: 1px;
    height: 1rem;
    background: var(--gray-300);
    margin: 0 1px;
}

.ba-slider-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 30;
    margin: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

.ba-slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 100vh;
    background: transparent;
    cursor: ew-resize;
}

.ba-slider-range::-moz-range-thumb {
    width: 40px;
    height: 100vh;
    background: transparent;
    cursor: ew-resize;
    border: none;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================
   PROMOTION SECTION
   ============================================ */
.promotion {
    padding: 5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.promotion .container {
    max-width: 64rem;
}

.promo-card {
    position: relative;
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--pink-200);
}

.promo-content-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .promo-content-grid { flex-direction: row; }
}

.promo-details {
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}

@media (min-width: 768px) {
    .promo-details { width: 50%; }
}

@media (min-width: 1024px) {
    .promo-details { padding: 3.5rem; }
}

.promo-badge {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.promo-price-block {
    margin-bottom: 2rem;
}

.promo-price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--red-promo);
    letter-spacing: -0.025em;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

@media (min-width: 1024px) {
    .promo-price { font-size: 5rem; }
}

.promo-original-price {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 0.5rem;
}

.promo-original-price span {
    text-decoration: line-through;
    color: var(--gray-400);
}

.promo-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800);
}

.promo-check {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--pink-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.promo-check svg {
    width: 0.75rem;
    height: 0.75rem;
}

.promo-image {
    display: none;
    width: 50%;
    position: relative;
    min-height: 400px;
}

@media (min-width: 768px) {
    .promo-image { display: block; }
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.promo-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.2), transparent);
    z-index: 10;
    pointer-events: none;
}

.promo-banner-bottom {
    background: var(--pink-primary);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 20;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.promo-banner-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.4;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

@media (min-width: 768px) {
    .promo-banner-text { font-size: 2.25rem; }
}

.promo-banner-text span {
    color: var(--pink-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 0;
    background: white;
    position: relative;
    border-top: 1px solid var(--gray-100);
}

.contact-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-badges { gap: 2rem; }
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

.branch-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.branch-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.branch-card-image {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
}

.branch-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.branch-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.4), transparent);
}

.branch-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
}

.branch-card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.branch-card-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-200);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.branch-card:hover .branch-card-hint {
    opacity: 1;
    transform: translateY(0);
}

.branch-card-hint svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================
   MODAL / DIALOG
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-out;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 32rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    animation: zoomIn 0.2s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-close {
    padding: 0.5rem;
    color: var(--gray-400);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--pink-primary);
    background: var(--pink-50);
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-image {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-700);
}

.modal-info-item {
    display: flex;
    gap: 0.75rem;
}

.modal-info-icon {
    color: var(--pink-primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 1.25rem;
    height: 1.25rem;
}

.modal-info-item p.label {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.modal-info-item p.value {
    font-size: 0.875rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.modal-actions .btn {
    flex: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-50);
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
}

.footer-floral {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    opacity: 0.4;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pink-primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.footer-brand .subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.15em;
}

.footer-brand p {
    color: var(--gray-600);
    max-width: 24rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer-brand p { margin: 0; }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-contact { align-items: flex-start; }
}

.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.footer-phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.footer-phone-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--pink-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-primary);
    transition: all 0.3s;
}

.footer-phone-link:hover .footer-phone-icon {
    background: var(--pink-primary);
    color: white;
}

.footer-phone-text p:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.footer-phone-text p:last-child {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    transition: color 0.2s;
}

.footer-phone-link:hover .footer-phone-text p:last-child {
    color: var(--pink-primary);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-social { align-items: flex-start; }
}

.footer-social h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.footer-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 200px;
}

.footer-social-buttons .btn {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   SVG ICONS (inline)
   ============================================ */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-sm svg {
    width: 1rem;
    height: 1rem;
}

.icon-lg svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   SCROLL REVEAL (JS controlled)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
