:root {
    --primary-color: #d4a5a5;
    --secondary-color: #f5e6e8;
    --dark-color: #3a3a3a;
    --light-color: #faf8f8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    margin: 0 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(245, 230, 232, 0.6)),
    url('/assets/img/eye-index.jpg') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #c08f8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.btn-line {
    background-color: #06C755;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-line:hover {
    background-color: #05b34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.4);
    color: white;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.badge-section {
    background-color: var(--light-color);
    padding: 40px 0;
}

.badge-item {
    text-align: center;
    padding: 20px;
}

.badge-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge-item h5 {
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.safety-points {
    background: var(--secondary-color);
}

.point-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #e8b5b5);
}

.point-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.05) 0%, transparent 70%);
    transition: all 0.6s;
    opacity: 0;
}

.point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.4);
}

.point-card:hover::after {
    opacity: 1;
    top: -20%;
    right: -20%;
}

.point-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #e8b5b5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
    position: relative;
    z-index: 1;
}

.point-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

.point-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.point-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.point-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff5f7, var(--secondary-color));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    border: 2px solid var(--primary-color);
}

.menu-section {
    background: white;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.2);
}

.menu-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.menu-card-premium {
    background: linear-gradient(135deg, #fff9f9, #fff5f7);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 165, 165, 0.3);
    position: relative;
}

.menu-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #f0c0c0, var(--primary-color));
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4a5a5, #c08f8f);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
    z-index: 1;
}

.menu-card-premium h4 {
    font-size: 1.6rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary-color), #c08f8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-card-premium .description {
    font-weight: 500;
}

.lift-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.premium-features {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.premium-features p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.premium-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.price-table {
    width: 100%;
}

.price-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: 10px 0;
}

.price-table td:first-child {
    color: #666;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.gallery {
    background-color: var(--light-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 165, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.booking {
    background: linear-gradient(135deg, var(--secondary-color), #fff5f7);
}

.faq-section {
    background: white;
}

.accordion-button {
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 165, 165, 0.25);
    border-color: var(--primary-color);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h4 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

footer h5 {
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}