/* Hero Section Styles */
.hero-section {
    background-color: #E5D5C7;
    padding: 34px 0;
    text-align: center;
}

.hero-title {
    color: #5A5A5A;
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar customizations */
.navbar {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
}

.navbar-brand {
    font-weight: 600;
    color: #5A5A5A !important;
}

.nav-link {
    color: #6c757d;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #495057 !important;
}

/* Active navigation link styles */
.nav-link.active {
    color: #996633 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #D4AF8C;
    border-radius: 1px;
}

/* Enhanced nav-link hover effect */
.nav-link:not(.active):hover {
    color: #8B7355 !important;
}

/* Pricelist Section Styles */
.pricelist-section {
    background-color: #F5F5F5;
    padding: 60px 0;
    min-height: auto;
}

.price-category {
    background-color: white;
    margin: 20px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.category-title {
    color: #5A4D3D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B7355;
}

.service-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.service-name {
    color: #5A4D3D;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    margin-right: 15px;
}

.service-price {
    color: #8B6F47;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-description {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

/* Footer Styles */
.site-footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 40px 0 20px 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-brand .footer-logo {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.footer-links h5,
.footer-social h5 {
    color: #D4B896;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D4AF8C;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444444;
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #996633;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    border-top: 1px solid #444444;
    margin: 30px 0 20px 0;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: #B0B0B0;
    font-size: 0.85rem;
    margin: 0;
}

.copyright strong {
    color: #D4B896;
}

/* Ensure footer stays at bottom */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

/* Contact Page Styles - Scoped to .contact-page */
.contact-page {
    background-color: #f8f9fa;
}

.contact-page .hero-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
}

.contact-page .contact-content-section {
    padding: 80px 0;
}
.btn:disabled {
    background-color: #aaaaaa;
    color: #ffffff;
    cursor: not-allowed;
    border: none;
    display: none;
}
.contact-page .contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-page .contact-info-title {
    color: #5A5A5A;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-page .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E5D5C7, #D4C4B7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-page .contact-icon i {
    font-size: 24px;
    color: #5A5A5A;
}

.contact-page .contact-details h4 {
    color: #5A5A5A;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-page .contact-details p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.contact-page .contact-details a {
    color: #5A5A5A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-page .contact-details a:hover {
    color: #495057;
    text-decoration: underline;
}

.contact-page .contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-page .contact-form-title {
    color: #5A5A5A;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.contact-page .contact-form .form-label {
    color: #5A5A5A;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-page .contact-form .form-control,
.contact-page .contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-form .form-control:focus,
.contact-page .contact-form .form-select:focus {
    border-color: #E5D5C7;
    box-shadow: 0 0 0 0.2rem rgba(229, 213, 199, 0.25);
}

.contact-page .contact-form .form-control.is-invalid,
.contact-page .contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

/* Instagram in-app browser warning banner */
.instagram-warning {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    background: linear-gradient(90deg, #fff3cd, #ffe9b8);
    color: #856404;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.instagram-warning .instagram-message { max-width: 1024px; display: flex; gap: 12px; align-items: center; }
.instagram-warning .instagram-actions { margin-left: 12px; }
.instagram-warning button.btn-inst-close { background: transparent; border: 1px solid rgba(0,0,0,0.08); padding: 6px 10px; border-radius: 6px; font-weight:600; }
.instagram-warning a.btn-inst-open { background: #fff; color: #856404; padding: 6px 10px; border-radius: 6px; text-decoration:none; border:1px solid rgba(0,0,0,0.06); }
.instagram-warning small { display:block; font-size:12px; color:#6c5842; }

/* Smooth transition for body padding when banner is shown */
body { transition: padding-top .22s ease; }

.contact-page .contact-form .form-check-input {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-page .contact-form .form-check-input:checked {
    background-color: #E5D5C7;
    border-color: #E5D5C7;
}

.contact-page .contact-form .form-check-input.is-invalid {
    border-color: #dc3545;
}

.contact-page .contact-form .btn-primary {
    background: linear-gradient(135deg, #E5D5C7, #D4C4B7);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    color: #5A5A5A;
    transition: all 0.3s ease;
}

.contact-page .contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #D4C4B7, #C3B3A6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-page .contact-form .btn-primary:disabled,
.contact-page .contact-form .btn-secondary {
    background: #e9ecef;
    border: none;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-page .contact-form .btn-primary:disabled:hover,
.contact-page .contact-form .btn-secondary:hover {
    background: #e9ecef;
    transform: none;
    box-shadow: none;
    color: #6c757d;
}

.contact-page .map-section {
    margin-top: 60px;
}

.contact-page .contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 20px;
}

.contact-page .contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Body layout for proper navbar/footer positioning */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content,
.error-page,
.contact-page,
.reservation-container {
    flex: 1 0 auto;
}

/* 404 Error Page Styles */
.error-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0;
    flex: 1 0 auto;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-content {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.error-illustration {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    color: #E5D5C7;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #E5D5C7, #D4C4B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-icon {
    margin-bottom: 30px;
}

.error-icon i {
    font-size: 4rem;
    color: #5A5A5A;
    transition: all 0.3s ease;
}

.error-title {
    color: #5A5A5A;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 50px;
}

.error-actions .btn {
    margin: 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.error-actions .btn-primary {
    background: linear-gradient(135deg, #E5D5C7, #D4C4B7);
    border: none;
    color: #5A5A5A;
}

.error-actions .btn-primary:hover {
    background: linear-gradient(135deg, #D4C4B7, #C3B3A6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.error-actions .btn-outline-secondary {
    border: 2px solid #E5D5C7;
    color: #5A5A5A;
}

.error-actions .btn-outline-secondary:hover {
    background-color: #E5D5C7;
    border-color: #E5D5C7;
    color: #5A5A5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.popular-links h3 {
    color: #5A5A5A;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.popular-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #5A5A5A;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.popular-link:hover {
    background: #E5D5C7;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #5A5A5A;
    border-color: #D4C4B7;
}

.popular-link i {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.popular-link:hover i {
    transform: scale(1.1);
}

.popular-link span {
    font-weight: 500;
    font-size: 1rem;
}

/* Additional reservation system styles */
.calendar-day-header {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.reservation-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #D4AF8C;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #D4AF8C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.alert-reservation {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.btn-reservation {
    background: linear-gradient(135deg, #D4AF8C, #C19A6B);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #C19A6B, #A67C52);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 140, 0.4);
}

.procedure-price {
    font-size: 1.2em;
    font-weight: 700;
    color: #28a745;
}

.reservation-progress {
    height: 4px;
    background: linear-gradient(90deg, #D4AF8C, #C19A6B);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Responsive Design for main site */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .price-category {
        margin: 15px 10px;
        padding: 25px 20px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pricelist-section {
        padding: 40px 0;
    }
    
    .price-category {
        margin: 10px 5px;
        padding: 20px 15px;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-name {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 1.05rem;
    }
    
    .service-price {
        font-size: 1.15rem;
        align-self: flex-end;
    }
    
    .service-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .service-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    /* Navbar responsive */
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    /* Footer responsive */
    .site-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-brand .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-tagline {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-links h5,
    .footer-social h5 {
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .pricelist-section {
        padding: 30px 0;
    }
    
    .price-category {
        margin: 10px 0;
        padding: 15px;
        border-radius: 6px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .site-footer {
        padding: 25px 0 10px 0;
    }
    
    .footer-brand .footer-logo {
        font-size: 1.2rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background-color: #000000;
        color: #ffffff;
    }
    
    .hero-title {
        color: #ffffff;
        text-shadow: none;
    }
    
    .nav-link {
        color: #000000 !important;
        font-weight: 600;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #ffffff !important;
        background-color: #000000;
    }
    
    .price-category {
        border: 2px solid #000000;
    }
    
    .category-title {
        color: #000000;
        border-bottom-color: #000000;
    }
    
    .service-name,
    .service-price {
        color: #000000;
    }
    
    .service-description {
        color: #333333;
    }
}

/* Focus improvements for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

.social-icon:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

@media (max-width: 576px) {
    .contact-page .hero-section {
        padding: 40px 0;
    }
    
    .contact-page .hero-title {
        font-size: 1.8rem;
    }
    
    .contact-page .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form-wrapper {
        padding: 15px;
    }
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-page {
        padding: 30px 0;
    }
    
    .error-content {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-icon i {
        font-size: 3rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .popular-link {
        padding: 20px 15px;
    }
    
    .popular-link i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .error-number {
        font-size: 4.5rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-links h3 {
        font-size: 1.3rem;
    }
}

/* Additional reservation system styles */
@media (max-width: 768px) {
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
    }
    
    .calendar-day {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .time-slot {
        padding: 0.5rem;
        margin: 0.2rem;
        font-size: 0.9rem;
    }
    
    .procedure-variants-grid {
        grid-template-columns: 1fr;
    }
    
    .step-indicator .step {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin: 0 5px;
    }
    .confirm-reservation {
        margin-top: 10px;
    }
    .next-to-confirmation {
        margin-top: 10px;
    }
}

/* Traditional Thai Massage Section */
.about-massage-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.massage-info-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.info-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.characteristics-section h4,
.benefits-section h4 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #495057;
}

.custom-list li::before {
    content: '•';
    color: #D4AF8C;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    border-left-color: #D4AF8C;
}

.benefit-item i {
    font-size: 1.2rem;
    min-width: 20px;
}

.benefit-item span {
    color: #495057;
    font-weight: 500;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4AF8C, #C19A6B);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 140, 0.4);
    background: linear-gradient(135deg, #C19A6B, #B08A5A);
}

/* Responsive adjustments for Thai massage section */
@media (max-width: 768px) {
    .massage-info-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .characteristics-section h4,
    .benefits-section h4 {
        font-size: 1.1rem;
    }
}

/* Local SEO Section Styles */
.local-seo-section {
    background-color: #f8f9fa;
}

.local-seo-section h3 {
    color: #5A5A5A;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.keyword-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF8C, #E5D5C7);
    color: #5A5A5A;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.keyword-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.service-card h4 {
    color: #5A5A5A;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: "✓";
    color: #D4AF8C;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.advantage-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-item h5 {
    color: #5A5A5A;
    margin-bottom: 0.5rem;
}
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }

/* Instagram WebView and Mobile Input Fixes */
#customer-form input,
#customer-form textarea,
#customer-form select {
    -webkit-user-select: auto !important;
    user-select: auto !important;
    -webkit-touch-callout: default !important;
    pointer-events: auto !important;
}

#customer-form input:not(:disabled):not([readonly]),
#customer-form textarea:not(:disabled):not([readonly]),
#customer-form select:not(:disabled):not([readonly]) {
    background-color: #ffffff !important;
    cursor: text !important;
}

/* Ensure form inputs are focusable in webviews */
.form-control:not(:disabled):not([readonly]),
.form-select:not(:disabled):not([readonly]) {
    -webkit-user-select: auto;
    user-select: auto;
    pointer-events: auto;
}

/* Specific fix for disabled state visual clarity */
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef !important;
    opacity: 0.7;
    cursor: not-allowed !important;
}

/* ===================================
   REVIEWS SECTION CAROUSEL STYLES
   =================================== */

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #E5D5C7 100%);
}

.reviews-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A5A5A;
    margin-bottom: 1rem;
}

.reviews-stats {
    margin-bottom: 2rem;
}

.stars-display i {
    margin: 0 2px;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

/* Track Container */
.reviews-track-container {
    overflow: hidden;
    width: 100%;
    min-height: 350px;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    align-items: stretch;
}

/* Review Card */
.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
}

.review-card-inner {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #D4AF8C;
    transition: all 0.3s ease;
}

.review-card-inner:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #8B7355;
}

.review-stars {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    color: #5A5A5A;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #D4AF8C;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5D5C7;
}

.review-author {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-procedure {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #D4AF8C;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #8B7355;
    font-size: 1.2rem;
}

.carousel-nav:hover {
    background: #D4AF8C;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-prev {
    left: 0;
}

.carousel-nav-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D4AF8C;
    opacity: 0.3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.indicator-dot.active {
    opacity: 1;
    background: #8B7355;
    transform: scale(1.3);
}

/* Responsive Design */
@media (min-width: 992px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
    }
    
    .reviews-track-container {
        padding: 0 1rem;
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .reviews-carousel-wrapper {
        padding: 0 20px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav-prev {
        left: -10px;
    }
    
    .carousel-nav-next {
        right: -10px;
    }
    
    .review-card-inner {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .reviews-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-wrapper {
        padding: 0 10px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .review-card-inner {
        padding: 1.25rem;
    }
    
    .reviews-stats .d-inline-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #D4AF8C;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    font-size: 2.5rem;
    color: #D4AF8C;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    color: #5A5A5A;
}

.cookie-text strong {
    color: #8B7355;
    font-size: 1.1rem;
}

.cookie-link {
    color: #8B7355;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #D4AF8C;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: #8B7355;
    color: white;
}

.btn-accept:hover {
    background: #6F5A44;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-decline {
    background: #E5D5C7;
    color: #5A5A5A;
}

.btn-decline:hover {
    background: #D4AF8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 140, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 1rem;
    }
    
    .cookie-text {
        font-size: 0.9rem;
    }
    
    .cookie-text strong {
        font-size: 1rem;
    }
}

/* ===================================
   MASSAGE TYPE MEGA-CATEGORY SELECTOR
   =================================== */
.massage-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.massage-type-card {
    position: relative;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid transparent;
    transition: all 0.25s ease;
    color: white;
    user-select: none;
}

.massage-type-card .type-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.massage-type-card.thai-card {
    background: linear-gradient(135deg, #D4AF8C, #C19A6B);
    color: #3D2B1F;
}

.massage-type-card.indian-card {
    background: linear-gradient(135deg, #D4622A, #9E3D1A);
    color: white;
}

.massage-type-card.active,
.massage-type-card:hover {
    border-color: rgba(0,0,0,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.massage-type-card .type-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    background: white;
    color: #9E3D1A;
}

@media (max-width: 480px) {
    .massage-type-selector {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CENTRALIZED COUPLE MASSAGE TOGGLE
   =================================== */
.couple-toggle-container {
    background: linear-gradient(135deg, rgba(212, 175, 140, 0.12), rgba(139, 115, 85, 0.12));
    border: 2px solid #D4AF8C;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.couple-toggle-container:hover {
    border-color: #C19A6B;
    box-shadow: 0 4px 12px rgba(212, 175, 140, 0.2);
}

.couple-toggle-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.couple-toggle-icon {
    font-size: 2rem;
    color: #999;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.couple-toggle-container:has(#couple-massage-toggle:checked) .couple-toggle-icon {
    color: #dc3545;
}

.couple-toggle-label {
    flex-grow: 1;
    font-size: 1.05rem;
}

.couple-toggle-label strong {
    display: inline-block;
    margin-right: 0.5rem;
}

.couple-toggle-switch {
    flex-shrink: 0;
}

/* Toggle Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #D4AF8C;
}

input:focus + .slider {
    box-shadow: 0 0 1px #D4AF8C;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .couple-toggle-content {
        gap: 0.75rem;
    }
    
    .couple-toggle-icon {
        font-size: 1.5rem;
    }
    
    .couple-toggle-label {
        font-size: 0.95rem;
    }
    
    .switch {
        width: 50px;
        height: 28px;
    }
    
    .slider:before {
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
    }
    
    input:checked + .slider:before {
        transform: translateX(22px);
    }
}

