.blog-article-page {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.article-hero {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 53, 75, 0.78), rgba(206, 75, 110, 0.6));
}

.article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.article-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta span::before {
    content: "•";
    display: inline-block;
    margin-right: 0.5rem;
    opacity: 0.6;
}

.article-meta span:first-child::before {
    content: "";
    margin-right: 0;
}

.article-main {
    padding: 40px 0 80px;
}

.article-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: clamp(28px, 4vw, 56px);
    max-width: 860px;
    margin: -60px auto 0;
    position: relative;
}

.article-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-top: 2.8rem;
}

.article-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-top: 2.2rem;
}

.article-content p {
    margin-top: 1.4rem;
    color: rgba(23, 105, 104, 0.92);
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 1.6rem 0 1.6rem 1.4rem;
    padding-left: 1rem;
    color: rgba(23, 105, 104, 0.92);
}

.article-content li {
    margin-bottom: 0.85rem;
}

.article-callout {
    background: rgba(206, 75, 110, 0.08);
    border-left: 4px solid var(--primary-pink);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    margin: 2.2rem 0;
    font-weight: 500;
}

.article-table {
    width: 100%;
    overflow-x: auto;
    margin: 2.4rem 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(23, 105, 104, 0.12);
}

.article-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.article-table th,
.article-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    font-size: 0.98rem;
    color: rgba(23, 105, 104, 0.95);
}

.article-table thead th {
    background: rgba(206, 75, 110, 0.12);
    color: var(--primary-pink);
    font-weight: 600;
}

.article-table tbody tr:nth-child(even) {
    background: rgba(78, 205, 196, 0.08);
}

.article-table tbody tr:hover {
    background: rgba(78, 205, 196, 0.14);
}

.article-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
    margin: 2.4rem 0;
}

.article-highlight-card {
    background: rgba(78, 205, 196, 0.12);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: inset 0 0 0 1px rgba(78, 205, 196, 0.25);
}

.article-highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.article-highlight-card p {
    margin-top: 0.5rem;
    font-size: 0.98rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2.4rem;
    border-top: 1px solid rgba(23, 105, 104, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(206, 75, 110, 0.1);
    color: var(--primary-pink);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-share span {
    font-weight: 600;
    color: rgba(23, 105, 104, 0.88);
}

.article-share a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 1.4rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.article-share a:hover,
.article-share a:focus-visible {
    background: var(--dark-gray);
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-decoration: none;
    margin-top: 2.5rem;
    transition: var(--transition);
}

.article-back-link:hover,
.article-back-link:focus-visible {
    color: var(--dark-gray);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .article-hero {
        padding: 96px 0 72px;
    }

    .article-content {
        margin-top: -40px;
        padding: 24px;
    }

    .article-meta {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .article-share {
        width: 100%;
        justify-content: space-between;
    }

    .article-share a {
        flex: 1;
        justify-content: center;
    }

    .article-table {
        margin: 1.8rem -1.5rem;
        border-radius: 0;
    }
}
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-contact__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: floatingButtonFloat 4s ease-in-out infinite;
}

.floating-contact__item::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(206, 75, 110, 0.25);
    opacity: 0;
    transform: scale(0.8);
    animation: floatingButtonPulse 3s ease-out infinite;
    pointer-events: none;
}

.floating-contact__item:nth-child(2) {
    animation-delay: 0.4s;
}

.floating-contact__item:nth-child(2)::after {
    animation-delay: 0.4s;
}

.floating-contact__item:nth-child(3) {
    animation-delay: 0.8s;
}

.floating-contact__item:nth-child(3)::after {
    animation-delay: 0.8s;
}

.floating-contact__item img {
    width: 28px;
    height: 28px;
}

.floating-contact__item:hover,
.floating-contact__item:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
}

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

@keyframes floatingButtonPulse {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    70% {
        opacity: 0;
        transform: scale(1.25);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .floating-contact__item {
        width: 52px;
        height: 52px;
        animation-duration: 3.2s;
    }

    .floating-contact__item img {
        width: 26px;
        height: 26px;
    }
}
/* Font Face Declarations */
@font-face {
    font-family: 'NVN Motherland Signature';
    src: url('./fonts/NVN-Motherland-Signature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bai Jamjuree';
    src: url('./fonts/BaiJamjuree-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Bai Jamjuree';
    src: url('./fonts/BaiJamjuree-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Bai Jamjuree';
    src: url('./fonts/BaiJamjuree-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Bai Jamjuree';
    src: url('./fonts/BaiJamjuree-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-pink: #CE4B6E;
    --primary-teal: #4ecdc4;
    --light-teal: #a8e6cf;
    --dark-gray: #176968;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --text-gray: #6c757d;
    
    --font-primary: 'Bai Jamjuree', sans-serif;
    --font-script: 'NVN Motherland Signature', cursive;
    --font-fallback: 'Inter', sans-serif;
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #232525;
    /* margin-bottom: 2.5rem; */
    letter-spacing: 0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b83d5a;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-pink);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-list a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--primary-pink);
}

.nav-item-dropdown {
    position: relative;
}

.nav-link-with-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: var(--transition);
    filter: brightness(0) saturate(100%) invert(26%) sepia(25%) saturate(1122%) hue-rotate(133deg) brightness(90%) contrast(90%);
}

.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 8px;
    list-style: none;
    padding: 8px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 400;
    text-transform: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--dark-gray);
    min-width: 60px;
}

.lang-dropdown-btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-pink);
}

.lang-dropdown-btn .lang-code {
    font-weight: 600;
}

.lang-dropdown-btn .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: var(--transition);
    margin-left: auto;
    filter: brightness(0) saturate(100%) invert(26%) sepia(25%) saturate(1122%) hue-rotate(133deg) brightness(90%) contrast(90%);
}

.lang-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 4px;
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: left;
    border-radius: var(--border-radius);
}

.lang-option:hover {
    background-color: var(--light-gray);
}

.lang-option.active {
    background-color: var(--primary-pink);
    color: var(--white);
    border-radius: var(--border-radius);
}

.lang-option .lang-name {
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #176968;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .lang-dropdown-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        /* min-width: 70px; */
    }
    
    .nav-item-dropdown {
        position: relative;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        margin-left: 1rem;
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .lang-dropdown-menu {
        min-width: 130px;
        right: 0;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: white;
}

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

.hero-text {
    animation: slideInFromLeft 1s ease-out;
}

.hero-right {
    animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: #232525;
    margin-bottom: 1.5rem;
}

.title-script {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-left: 3rem;
    min-height: 3rem;
    line-height: 1.2;
}

.title-script .title-script-part {
    font-family: var(--font-script) !important;
    color: #CE4B6E !important;
    font-size: inherit;
}

.title-script .title-script-bold {
    font-family: var(--font-primary) !important;
    font-weight: 700;
    color: #232525 !important;
}

.title-tagline {
    display: block;
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: #CE4B6E;
    margin-left: 1rem;
}

.hero-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #232525;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: min(100%, 420px);
    position: relative;
}

.main-image img,
.main-image video {
    width: 100%;
    display: block;
    border-radius: 26px;
}

.hero-video {
    transition: opacity 0.3s ease;
}

.hero-video:not(.video-loaded) {
    opacity: 0.8;
}

.main-image img {
    height: auto;
    object-fit: contain;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.hero-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #8FBFC1;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: heroBadgeBounce 3s ease-in-out infinite;
    transform-origin: center;
    white-space: nowrap;
}

.hero-badge--top {
    top: -18px;
    right: 40px;
    animation-delay: 0s;
}

.hero-badge--middle {
    top: 46%;
    left: -40px;
    animation-delay: 0.4s;
}

.hero-badge--bottom {
    bottom: -18px;
    right: 40px;
    animation-delay: 0.8s;
}

@keyframes heroBadgeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-script {
        font-size: 2.1rem;
        margin-left: 0;
    }
    
    .title-tagline {
        font-size: 1.6rem;
        margin-left: 0;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 520px;
        margin: 0 auto 1.75rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .main-image {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 0px;
    }
    
    .title-main {
        font-size: 2.1rem;
    }
    
    .title-script {
        font-size: 1.9rem;
    }
    
    .title-tagline {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .main-image {
        max-width: 320px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        right: auto;
    }
    
    .hero-badge--top {
        top: 6px;
        right: 24px;
    }
    
    .hero-badge--middle {
        top: 45%;
        left: -12px;
    }
    
    .hero-badge--bottom {
        bottom: 6px;
        right: 20px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.1rem;
    }
}

/* Help Section */
.help-section {
    background-color: #CFE3E4;
    padding: 40px 0;
}

.help-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.help-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInFromLeft 1s ease-out;
}

.help-greeting {
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--primary-pink);
    font-weight: normal;
}

.help-question {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 600;
    color: #1b3736;
    line-height: 1.3;
}

.help-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #2e4a49;
}

.help-quote {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #174847;
    font-style: italic;
    padding-left: 1.5rem;
    margin: 0.25rem 0;
}

.help-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(78, 205, 196, 0.6), rgba(255, 107, 157, 0.6));
}

.help-media {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromRight 1s ease-out;
    position: relative;
    padding: 8px;
}

.help-media img {
    width: min(100%, 520px);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.18);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

@keyframes lightRun {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .help-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .help-media {
        padding: 6px;
    }

    .help-media::before {
        border-radius: 28px;
        padding: 3px;
    }

    .help-media img {
        width: min(100%, 380px);
    }
}

/* Services Section */
.services {
    padding: 30px 0;
    background: white;
}

.services-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.services .section-title {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
    border-radius: 32px;
    padding: 12px;
    border: 1px solid #8AB6B0;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 1.5rem 1.5rem;
}

.service-card--reverse .service-content {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: #101010;
    line-height: 1.35;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

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

.service-text .btn {
    align-self: flex-start;
}

.service-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-image {
    width: min(100%, 360px);
    border-radius: 28px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.9);
}

.service-card--reverse .service-image {
    border-color: rgba(255, 255, 255, 0.85);
}

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

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #176968;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #176968;
}

.benefit-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.benefit-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #1B3837;
    line-height: 1.6;
    font-weight: 500;
}

.btn-outline-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-width: 2px;
}

.btn-outline-arrow .btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-outline-arrow:hover .btn-arrow {
    transform: translateX(4px);
}

/* Services Responsive */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .service-card--reverse .service-content {
        flex-direction: column;
    }

    .service-text {
        align-items: center;
    }

    .service-text .btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }

    .service-card {
        padding: 10px;
    }

    .service-content {
        padding: 1.5rem 0.2rem;
        gap: 2rem;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    .service-image {
        width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose {
    position: relative;
    padding: 40px 0;
    background: url("icons/background-why-choose-section.jpg") center/cover no-repeat;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(143, 191, 193, 0.85);
}

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

.why-choose .section-title {
    color: #fefefe;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.94);
    padding: 1.5rem 1rem;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* gap: 0.75rem; */
}

.feature-item:hover {
    transform: translateY(-6px);
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3333;
    line-height: 1.35;
}

.feature-item p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #2f4d4d;
    line-height: 1.6;
    font-weight: 500;
}

/* Why Choose Us Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 30px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.15rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #f4f9f9;
    padding: 40px 0;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a4c4b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: #163535;
    line-height: 1.4;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(143, 191, 193, 0.36);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(143, 191, 193, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon img {
    width: 26px;
    height: 26px;
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #122c2c;
    margin: 0;
}

.contact-card p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #345252;
    line-height: 1.5;
    margin: 0;
}

.btn-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-card .btn-outline {
    border-color: #CE4B6E;
    color: #CE4B6E;
}

.contact-card .btn-outline:hover {
    background-color: #CE4B6E;
    color: #ffffff;
}

/* Contact Methods Responsive */
@media (max-width: 1024px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        align-items: center;
        text-align: center;
    }
    
    .contact-card-body {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 0;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 1.75rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
    background: white;
}

.gallery .section-title {
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    justify-items: center;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12); */
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.08) 0%, rgba(17, 24, 39, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1rem; */
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.gallery-more {
    min-width: 220px;
}

.gallery-page {
    background: #f5f7f7;
}

.gallery-page__header {
    padding: 32px 0 16px;
}

.gallery-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #176968;
    text-decoration: none;
    margin-bottom: 1rem;
}

.gallery-back:hover {
    color: #0f4f4f;
}

.gallery-page__main {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .gallery {
        padding: 30px 0;
    }

    .gallery-item {
        padding: 0.75rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #CFE3E4;
    padding: 40px 0;
    text-align: center;
}

.testimonials-title {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 700;
    color: #232525;
    margin-bottom: 1.7rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.2rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.testimonial-card p {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: #233434;
    font-style: italic;
    margin: 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2b2a;
}

.testimonial-role {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: rgba(26, 43, 42, 0.7);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 30px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.75rem;
    }
}

/* Blog Section */
.blog {
    padding: 40px 0;
    background: white;
}

.blog .section-title {
    margin-bottom: 1.8rem;
}

.blog-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-scroll::-webkit-scrollbar {
    display: none;
}

.blog-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(23, 105, 104, 0.12);
    color: #176968;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-nav-btn:hover {
    background: rgba(23, 105, 104, 0.22);
}

.blog-card {
    flex: 0 0 320px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #232525;
    margin: 0 1.25rem;
    line-height: 1.4;
}

.blog-card p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #3a4a4a;
    margin: 0 1.25rem 0;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 1.25rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: #CE4B6E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more::after {
    content: "→";
    font-size: 1rem;
}

.read-more:hover {
    color: #B83A5B;
}

@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 300px;
    }

    .blog-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 30px 0;
    }

    .blog-card {
        flex: 0 0 260px;
    }

    .blog-card img {
        height: 160px;
    }
}

/* Footer Section */
.footer {
    background-color: #232525;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    /* font-family: var(--font-script); */
    font-size: 1.8rem;
    color: #CE4B6E;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section li a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section li a:hover {
    color: #CE4B6E;
}

.footer-contact-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #CE4B6E;
}

.fanpage-embed {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.fanpage-embed iframe {
    display: block;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: #999;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
}

/* Booking Modal */
.modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 16px 16px;
    box-sizing: border-box;
    overflow-y: auto;
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(6px);
}

.modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    max-width: 560px;
    width: min(92%, 560px);
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.22);
    opacity: 0;
    transform: translateY(24px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal.is-open .modal-dialog {
    animation: modalSlideIn 0.35s ease forwards;
}

.modal.is-closing .modal-dialog {
    animation: modalSlideOut 0.25s ease forwards;
}

.modal-dialog::-webkit-scrollbar {
    display: none;
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #6f6f6f;
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    color: #ff6b9d;
    transform: scale(1.1);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-kicker {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    color: #ff6b9d;
    margin-bottom: 8px;
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #111;
    font-family: var(--font-primary);
}

.modal-header p {
    color: #555;
    line-height: 1.6;
}

.booking-form {
    display: grid;
    gap: 12px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form label {
    font-weight: 600;
    color: #232525;
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 16px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    color: #111;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.12);
}

.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23909090' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 44px;
}

.booking-form textarea {
    resize: vertical;
    min-height: 90px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.booking-form .btn-full {
    width: 100%;
    justify-content: center;
}

.form-response {
    font-size: 15px;
    font-weight: 600;
    color: #176968;
    min-height: 20px;
}

.form-response.error {
    color: #ff6b9d;
}

body.modal-open {
    overflow: hidden;
}

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

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

@media (max-width: 600px) {
    .modal-dialog {
        padding: 32px 24px;
        border-radius: 20px;
        max-height: calc(100vh - 48px);
    }

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

/* ============================================
   Service Detail Pages
============================================ */

body.service-detail {
    --service-accent: #8FBFC1;
    --service-accent-soft: #e8f4f5;
    --service-accent-dark: #6fa3a6;
    --service-accent-text: #5a8a8d;
    --service-card-border: rgba(143, 191, 193, 0.15);
    color: #1c1c1e;
}

body.service-detail--brow {
    --service-accent: #b9a6f5;
    --service-accent-soft: #f3f0ff;
    --service-accent-dark: #6b53cf;
    --service-accent-text: #5941bd;
    --service-card-border: rgba(105, 76, 207, 0.12);
}

body.service-detail--lip-removal {
    --service-accent: #f5c38a;
    --service-accent-soft: #fff4e5;
    --service-accent-dark: #d38c3c;
    --service-accent-text: #c27322;
    --service-card-border: rgba(211, 140, 60, 0.12);
}

.service-detail-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--service-accent-soft) 0%, #ffffff 55%, #ffffff 100%);
}

.service-hero-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 64px;
}

.service-hero-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--service-accent-text);
    border: 1px solid var(--service-card-border);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-hero-title {
    font-size: clamp(32px, 5vw, 44px);
    line-height: 1.18;
    color: #111827;
    font-weight: 700;
    margin-top: 80px;
}

.service-hero-subtitle {
    font-size: clamp(18px, 2.8vw, 22px);
    line-height: 1.5;
    color: var(--service-accent-text);
    font-weight: 600;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.service-hero-media {
    position: relative;
    justify-self: center;
}

.service-hero-image {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
    background: #fff;
}

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

.service-hero-stat {
    position: absolute;
    bottom: -28px;
    right: -24px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
    border: 1px solid var(--service-card-border);
    text-align: left;
    min-width: 200px;
}

.service-hero-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--service-accent-text);
    display: block;
}

.service-hero-stat .stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
}

.service-highlights {
    padding: 40px 0;
}

.service-standards,
.service-brow-shapes {
    padding: 40px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.highlight-card {
    background: #fff;
    border: 1px solid var(--service-card-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.highlight-card:has(.highlight-image) {
    padding: 0;
    overflow: hidden;
}

.highlight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--service-accent-soft);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.highlight-card:has(.highlight-image) h3 {
    margin: 20px 20px 12px;
}

.highlight-card p {
    color: #4b5563;
    line-height: 1.6;
}

.highlight-card:has(.highlight-image) p {
    margin: 0 20px 20px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-heading p {
    margin-top: 16px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
}

.service-process {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--service-accent-soft) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.process-step {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.55) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::after {
    opacity: 1;
}

.process-index {
    font-size: 40px;
    font-weight: 700;
    color: var(--service-accent-text);
    margin-bottom: 18px;
    display: block;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.process-step p {
    color: #4b5563;
    line-height: 1.6;
}

.service-results {
    padding: 96px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.result-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
}

.result-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #111827;
}

.result-list {
    display: grid;
    row-gap: 14px;
    padding-left: 20px;
    color: #4b5563;
    line-height: 1.6;
}

.service-pricing {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(17, 24, 39, 0.02) 100%);
}

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

.pricing-grid--single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card--single {
    text-align: center;
    border: 2px solid var(--service-accent);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
}

.pricing-card ul {
    display: grid;
    row-gap: 12px;
    padding-left: 20px;
    color: #4b5563;
    line-height: 1.6;
    text-align: left;
    margin: 20px 0;
}

.pricing-card--single ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
    max-width: 400px;
    margin: 10px auto;
}

.pricing-card--single ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    display: flex;
    align-items: flex-start;
}

.pricing-card--single ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    background: #176968;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.pricing-subtitle {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    margin-top: -8px;
}

.pricing-button {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--service-card-border);
}

.pricing-card--featured {
    border: 2px solid var(--service-accent);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: var(--service-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pricing-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--service-accent-text);
}

.pricing-price--range {
    font-size: 32px;
    margin: 16px 0 8px;
}

.pricing-note {
    max-width: 640px;
    margin: 36px auto 0;
    text-align: center;
    color: #4b5563;
    line-height: 1.6;
}

.service-faq {
    padding: 40px 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.06);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

.service-cta {
    padding: 40px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--service-accent-soft) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.1);
}

.cta-card h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
    color: #111827;
}

.cta-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service Hero Highlights */
.service-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 16px;
}

.service-hero-highlights li::before {
    content: "✓";
    color: #ffffff;
    background: #176968;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service Problems Section */
.service-problems {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--service-accent-soft) 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.problem-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--service-accent-soft);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    font-size: 18px;
    margin: 20px 20px 12px;
    color: #111827;
}

.problem-card p {
    margin: 0 20px 20px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Section */
.service-why-choose {
    padding: 40px 0;
}

.why-choose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-choose-media {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
}

.why-choose-media img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #176968;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.why-choose-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-choose-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.why-choose-text p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

/* Color Palette Section */
.service-color-palette {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--service-accent-soft) 100%);
}

.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(17, 24, 39, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-swatch:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.15);
}

.color-item span {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
    text-align: center;
}

/* Process Image */
.process-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--service-accent-soft);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-step:hover .process-image img {
    transform: scale(1.05);
}

/* Service Commitment Section */
.service-commitment {
    padding: 40px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.commitment-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.commitment-icon {
    width: 56px;
    height: 56px;
    background: #176968;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
}

.commitment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.commitment-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.commitment-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

/* Why Lumi Section */
.service-why-lumi {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--service-accent-soft) 100%);
}

.why-lumi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.why-lumi-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-lumi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.why-lumi-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.why-lumi-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Color Development Section */
.service-color-development {
    padding: 40px 0;
}

.color-development-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.timeline-item {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--service-card-border);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.timeline-day {
    display: inline-block;
    background: var(--service-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.timeline-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.timeline-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

/* Before After Section */
.service-before-after {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--service-accent-soft) 100%);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.before-after-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.15);
}

.before-after-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--service-accent-soft);
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before-after-item:hover .before-after-image img {
    transform: scale(1.05);
}

.before-after-item {
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10001;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 36px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 85vh;
    }
}

@media (max-width: 1024px) {
    .service-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-hero-media {
        justify-self: stretch;
    }

    .service-hero-stat {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 30px 0;
    }

    .service-highlights,
    .service-standards,
    .service-brow-shapes,
    .service-process,
    .service-results,
    .service-pricing,
    .service-faq,
    .service-cta,
    .service-problems,
    .service-why-choose,
    .service-color-palette,
    .service-commitment,
    .service-why-lumi,
    .service-color-development,
    .service-before-after {
        padding: 30px 0;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .highlight-card,
    .process-step,
    .result-card,
    .faq-item,
    .pricing-card,
    .problem-card,
    .commitment-card,
    .why-lumi-card,
    .timeline-item {
        padding: 24px;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .color-palette-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-image {
        height: 150px;
    }
}

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

    .gallery-item,
    .feedback-item {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 30px 0;
    }

    .gallery-grid,
    .feedback-grid {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
    }

    .gallery-dots {
        margin-top: 1.2rem;
    }
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 24px;
}

.feedback-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
}

.feedback-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   Button Animations - Đặt lịch & Liên hệ
============================================ */

/* Pulse animation for booking and contact buttons */
[data-action="open-booking"],
[data-translate="contact_now"] {
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

[data-action="open-booking"]::before,
[data-translate="contact_now"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

[data-action="open-booking"]:hover::before,
[data-translate="contact_now"]:hover::before {
    left: 100%;
}

[data-action="open-booking"]:hover,
[data-translate="contact_now"]:hover {
    animation: buttonPulseHover 0.6s ease-in-out;
    background-color: #b83d5a !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(206, 75, 110, 0.4);
}

[data-action="open-booking"]:active,
[data-translate="contact_now"]:active {
    transform: translateY(-1px) scale(1.02);
    animation: buttonClick 0.3s ease-out;
}

/* Pulse animation keyframes */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(206, 75, 110, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(206, 75, 110, 0.5),
                    0 0 0 4px rgba(206, 75, 110, 0.1);
    }
}

@keyframes buttonPulseHover {
    0% {
        box-shadow: 0 4px 15px rgba(206, 75, 110, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(206, 75, 110, 0.6),
                    0 0 0 8px rgba(206, 75, 110, 0.15);
    }
    100% {
        box-shadow: 0 8px 25px rgba(206, 75, 110, 0.4);
    }
}

@keyframes buttonClick {
    0% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(0) scale(0.98);
    }
    100% {
        transform: translateY(-1px) scale(1.02);
    }
}

/* Enhanced shimmer effect on load */
[data-action="open-booking"]::after,
[data-translate="contact_now"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    [data-action="open-booking"],
    [data-translate="contact_now"] {
        animation: buttonPulseMobile 2.5s ease-in-out infinite;
    }
    
    @keyframes buttonPulseMobile {
        0%, 100% {
            box-shadow: 0 3px 12px rgba(206, 75, 110, 0.3);
        }
        50% {
            box-shadow: 0 3px 16px rgba(206, 75, 110, 0.5),
                        0 0 0 3px rgba(206, 75, 110, 0.1);
        }
    }
    
    [data-action="open-booking"]:hover,
    [data-translate="contact_now"]:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 6px 20px rgba(206, 75, 110, 0.4);
    }
}