:root {
  /* Colors */
  --black: #333333;
  --green2: #689a3edb;
  --green: #5b9a8b;
  --blue: #3498db;
  --light-bg: #f8f9fa;
  --border-color: #e9ecef;
  --light-border: #eee;
  --transition: all 0.3s ease;
  --white: #ffffff;
  --text-color: #333;
  --light-gray: #ddd;
  /* Typography */
  --green-hover2: #85b82f;
  --green-hover: #67ad9c;
  --border-radius: 25px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* Effects */
  --font-size-large: 1.1rem;
  --font-size-normal: 1.05rem;
  --font-size-xlarge: 1.8rem;
  /* Spacing */
  --padding-standard: 10px 30px;
}

html, body { color: var(--text-color); }

.primary-link { color: var(--black); text-decoration: none; transition: var(--transition); }
.primary-link:hover { color: var(--green-hover); }
.text-primary {color: var(--green) !important;}
.text-bold { font-weight: bold; }
.text-size-small { font-size: small; }
.text-size-large { font-size: large; }
.link-green { color: var(--green); text-decoration: none; }
.link-muted { color: var(--bs-secondary-color); text-decoration: none; transition: var(--transition); }
.link-muted:hover { color: var(--green-hover); text-decoration: none; }

/* navbar */
.navbar { align-items: center; background: transparent; display: flex; justify-content: space-between; padding: 15px 30px; position: sticky; top: 0; transition: var(--transition); width: 100%; z-index: 1000;flex-wrap: nowrap;}
.navbar .logo { color: var(--white); font-size: var(--font-size-xlarge); font-weight: 700; letter-spacing: 1px; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); }
.navbar .menu-container { display: flex; flex: 1; justify-content: center; }
.navbar .menu { align-items: center; background: var(--white); border-radius: var(--border-radius); display: flex; gap: 40px; padding: var(--padding-standard); }
.navbar .menu a { color: var(--text-color); font-size: var(--font-size-normal); font-weight: bold; padding: 8px 0; position: relative; text-decoration: none; transition: var(--transition); }
.navbar .menu a:hover { color: var(--green); }
.navbar .menu a::after { background-color: var(--green); bottom: 0; content: ''; height: 2px; left: 0; position: absolute; transform: scaleX(0); transition: transform 0.3s ease; width: 100%; }
.navbar .menu a:not(:last-child)::before { background-color: var(--light-gray); content: ''; height: 16px; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 1px; }
.navbar .menu a:hover::after { transform: scaleX(1); }
/* Mobile Menu Overlay */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 998; display: none; opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu-overlay.show { display: block; opacity: 1; }

.navbar-mobile-menu { animation: fadeIn 0.3s ease forwards; background: var(--white); box-shadow: var(--box-shadow); display: none; flex-direction: column; gap: 15px; left: 0; padding: 20px 30px; position: fixed; top: 80px; width: 100%; z-index: 999; }
.navbar-mobile-menu a { border-bottom: 1px solid rgba(0, 0, 0, 0.1); color: var(--text-color); font-size: var(--font-size-large); font-weight: bold; padding: 12px 0; text-decoration: none; transition: var(--transition); }
.navbar-mobile-menu a:hover { color: var(--green); padding-left: 5px; }
.navbar-mobile-menu .mobile-login { color: var(--green); font-weight: 600; }
.navbar-mobile-menu .mobile-book { background-color: var(--green); border-bottom: none; border-radius: var(--border-radius); color: var(--white); font-weight: 600; margin-top: 10px; padding: 12px 20px; text-align: center; }
.navbar-mobile-menu .mobile-book:hover { background-color: var(--green-hover); padding-left: 20px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar .nav-right { align-items: center; display: flex; gap: 20px; }
.navbar .login-link { color: var(--text-color); font-size: var(--font-size-normal); font-weight: 500; text-decoration: none; transition: var(--transition); }
.navbar .login-link:hover { color: var(--green); }
.navbar .book-button { background-color: var(--green); border-radius: var(--border-radius); color: var(--white); font-size: var(--font-size-normal); font-weight: 500; padding: var(--padding-standard); text-decoration: none; transition: var(--transition); }
.navbar .book-button:hover { background-color: var(--green-hover); transform: translateY(-2px); }

/* User Menu Styles */
.user-menu { position: relative; display: inline-block; }
.user-dropdown-toggle { background: none; border: none; color: var(--text-color); padding: 8px 15px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 14px; border-radius: 20px; transition: var(--transition); }
.user-dropdown-toggle:hover { background-color: rgba(0, 0, 0, 0.05); }
.user-dropdown-toggle i:first-child { font-size: 18px; color: var(--green); }
.user-dropdown-toggle span { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-dropdown-menu { position: absolute; top: 100%; right: 0; background: var(--white); border-radius: 10px; box-shadow: var(--box-shadow); min-width: 200px; z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); margin-top: 5px; }
.user-dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: var(--text-color); text-decoration: none; transition: var(--transition); border-radius: 8px;}
.dropdown-item:hover { background-color: var(--light-bg); color: var(--green); }
.dropdown-item i { width: 16px; text-align: center; }
.dropdown-divider { height: 1px; background-color: var(--border-color); margin: 8px 15px; }

/* Mobile Navigation Icons */
.mobile-nav-icons { display: none; align-items: center; gap: 15px; }
.mobile-nav-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); display: flex; align-items: center; justify-content: center; color: var(--text-color); text-decoration: none; font-size: 18px; transition: var(--transition); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.mobile-nav-icon:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); color: var(--green); }
.mobile-user-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; cursor: pointer; transition: var(--transition); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.mobile-user-avatar:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.mobile-dashboard, .mobile-profile, .mobile-bookings, .mobile-logout { color: var(--text-color); text-decoration: none; padding: 10px 20px; display: block; border-bottom: 1px solid var(--light-border); }
.mobile-dashboard:hover, .mobile-profile:hover, .mobile-bookings:hover, .mobile-logout:hover { background-color: var(--light-bg); color: var(--green); }
.desktop-nav { display: flex; align-items: center; gap: 20px; }
.trust-section { background-color: var(--green2); color: white; padding: 60px 0; position: relative; }
.gallery-container { margin-bottom: 60px; }
.gallery-row { margin-left: -10px; margin-right: -10px; }
.gallery-item { animation: fadeIn 0.5s ease forwards; opacity: 0; padding: 0 10px; }
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-card { border-radius: 25px; box-shadow: var(--box-shadow); height: 250px; overflow: hidden; position: relative; transition: var(--transition); }
.gallery-card img { height: 100%; object-fit: cover; transition: var(--transition); width: 100%; }
.gallery-card:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); transform: translateY(-5px); }
.gallery-card:hover img { transform: scale(1.05); }
.view-more-btn { transition: var(--transition); }
.view-more-btn:hover { background-color: var(--green-hover) !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transform: translateY(-2px); }
.footer-attribution { font-size: 10px; margin-top: 10px; opacity: 0.7; }
.footer-attribution a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-attribution a:hover { text-decoration: underline; }

.main .pet-care-section {background:linear-gradient(180deg,#d5e5ee 0%,#f8f9fa 92%);position:relative;padding:86px 0 58px;overflow:hidden;min-height:650px;}
.main .pet-bg-image {position:absolute;right:0;top:0;bottom:0;width:100%;height:100%;z-index:0;}
.main .pet-bg-image img {filter:saturate(0.95) contrast(1.03);position:absolute;right:0;top:0;width:100%;height:100%;object-fit:cover;object-position:center;}
.main .pet-bg-overlay {position:absolute;left:0;top:0;bottom:0;width:70%;background:linear-gradient(to right,#d5e5ee 0%,rgba(213,229,238,0.96) 26%,rgba(248,249,250,0.82) 54%,rgba(248,249,250,0.18) 100%);z-index:1;}
.main .pet-care-container {position:relative;z-index:2;}
.main .pet-care-row {min-height:430px;}
.main .home-eyebrow {color:var(--green);display:inline-flex;font-size:0.78rem;font-weight:800;letter-spacing:1px;margin-bottom:12px;text-transform:uppercase;}
.main .hero-title {color:#2c2c2c;font-size:52px;font-weight:800;letter-spacing:0;line-height:1.08;text-align:start;}
.main .hero-subtitle {color:#5d6470;font-size:18px;line-height:1.7;text-align:start;margin-left:0;max-width:620px;}
.main .hero-btn-group {flex-wrap:wrap;}
.main .home-primary-btn,.main .home-secondary-btn {align-items:center;border-radius:50px;display:inline-flex;font-size:1rem;font-weight:800;gap:10px;justify-content:center;min-height:48px;padding:13px 24px;text-decoration:none;transition:var(--transition);}
.main .home-primary-btn {background:var(--green);box-shadow:0 12px 24px rgba(91,154,139,0.24);color:#fff;}
.main .home-primary-btn:hover {background:var(--green-hover);color:#fff;transform:translateY(-2px);}
.main .home-secondary-btn {background:#fff;border:1px solid rgba(91,154,139,0.24);color:#2c2c2c;}
.main .home-secondary-btn:hover {border-color:var(--green);color:var(--green);transform:translateY(-2px);}
.main .btn-prices {font-weight:600;padding:14px;margin-top:20px;}
.main .wave-divider {position:absolute;height:150px;width:100%;bottom:0;}
.main .wave-svg {width:100%;height:100%;display:block;position:absolute;bottom:0;}
.main .services-section {background:#f8f9fa;padding:60px 0 74px;}
.main .home-section-heading {margin:0 auto 36px;max-width:720px;}
.main .home-section-heading p {color:#5d6470;font-size:17px;line-height:1.65;margin:8px auto 0;}
.main .services-title {color:#2c2c2c;font-size:42px;font-weight:800;letter-spacing:0;margin:0;}
.main .service-card {background:#fff;border:1px solid #edf1f2;border-radius:18px;box-shadow:0 8px 22px rgba(0,0,0,0.045);height:100%;padding:34px 28px;text-align:center;transition:var(--transition);}
.main .service-card:hover {box-shadow:0 16px 32px rgba(0,0,0,0.08)!important;transform:translateY(-5px);}
.main .service-icon {align-items:center;background:rgba(91,154,139,0.12);border-radius:18px;display:inline-flex;height:72px;justify-content:center;width:72px;}
.main .service-icon i {color:var(--green);font-size:2.3rem;}
.main .service-card-title {color:#2c2c2c;font-size:21px;}
.main .service-card-text {color:#65707a;font-size:15px;line-height:1.6;}
.main .service-link {align-items:center;color:var(--green);display:inline-flex;font-weight:800;text-decoration:none;}
.main .service-link:hover {color:var(--green-hover);}
.main .scruffy-fluffy-section {background:linear-gradient(180deg,#f8f9fa 0%,#fff 100%);padding:80px 0 94px;position:relative;overflow:hidden;}
.main .section-bg-decor {position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;overflow:hidden;}
.main .decor-circle {display:none;}
.main .decor-circle-1 {width:400px;height:400px;background:linear-gradient(135deg,var(--green) 0%,#8BC34A 100%);top:-100px;right:-100px;}
.main .decor-circle-2 {width:300px;height:300px;background:linear-gradient(135deg,#9C68FF 0%,#0091FF 100%);bottom:-50px;left:-50px;}
.main .decor-paw {position:absolute;font-size:22px;opacity:0.08;color:var(--green);}
.main .decor-paw-1 {top:20%;left:5%;transform:rotate(-15deg);}
.main .decor-paw-2 {bottom:30%;right:8%;transform:rotate(20deg);}
.main .section-badge {background:rgba(91,154,139,0.12);border:1px solid rgba(91,154,139,0.24);border-radius:50px;color:var(--green);display:inline-block;font-size:0.78rem;font-weight:800;letter-spacing:1px;margin-bottom:16px;padding:8px 18px;text-transform:uppercase;}
.main .section-title {color:#2c2c2c;font-size:46px;font-weight:800;letter-spacing:0;margin-bottom:12px;}
.main .section-subtitle {color:#65707a;font-size:18px;line-height:1.65;margin:0 auto;max-width:560px;}
.main .home-gallery-slider-wrapper {position:relative;width:100vw;margin-left:calc(-50vw + 50%);margin-top:40px;padding:10px 0;overflow:hidden;will-change:transform;}
.main .home-gallery-slider-wrapper::before, .main .home-gallery-slider-wrapper::after {content:"";position:absolute;top:0;width:15%;height:100%;z-index:2;pointer-events:none;}
.main .home-gallery-slider-wrapper::before {left:0;background:linear-gradient(to right,#f8f9fa,transparent);}
.main .home-gallery-slider-wrapper::after {right:0;background:linear-gradient(to left,#fff,transparent);}
.keen-slider__slide {flex:0 0 280px;min-width:280px;max-width:280px;padding:0 10px;}
@media (max-width:767px) {.keen-slider__slide {flex:0 0 240px;min-width:240px;max-width:240px;}}
@media (max-width:480px) {.keen-slider__slide {flex:0 0 200px;min-width:200px;max-width:200px;}}
.main .home-result-card {background:#fff;border-radius:18px;box-shadow:0 8px 22px rgba(0,0,0,0.06);overflow:hidden;position:relative;transition:transform 0.3s ease,box-shadow 0.3s ease;aspect-ratio:13 / 16;}
.main .home-result-card img {width:100%;height:100%;display:block;object-fit:cover;object-position:center 28%;transition:transform 0.5s ease;}
.main .home-result-card:hover {transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,0.1);}
.main .home-result-card:hover img {transform:scale(1.08);}
.main .home-result-name {position:absolute;bottom:0;left:0;width:100%;padding:15px 10px 8px;text-align:center;color:rgba(255,255,255,0.95);font-size:0.8rem;font-weight:600;background:linear-gradient(to top,rgba(0,0,0,0.5) 0%,transparent 100%);pointer-events:none;letter-spacing:0.3px;text-shadow:0 1px 2px rgba(0,0,0,0.3);opacity:0.8;transition:opacity 0.3s ease;}
.main .home-result-card:hover .home-result-name {opacity:1;}
.main .btn-view-more {align-items:center;background:var(--green);border-radius:50px;box-shadow:0 12px 24px rgba(91,154,139,0.24);color:#fff;display:inline-flex;font-weight:800;gap:10px;padding:14px 28px;text-decoration:none;transition:var(--transition);}
.main .btn-view-more:hover {background:var(--green-hover);box-shadow:0 16px 32px rgba(91,154,139,0.28);color:#fff;transform:translateY(-2px);}
.main .btn-view-more i {transition:transform 0.3s ease;}
.main .btn-view-more:hover i {transform:translateX(5px);}
.main .trust-title {font-size:20px;font-weight:800;}
.main .star-rating i {color:#f7b731;font-size:1.35rem;}
.main .family-section {background:linear-gradient(180deg,#fff 0%,#eef6f3 100%);padding:78px 18px 96px;position:relative;}
.main .floating-div {max-width:1250px;position:relative;width:100%;}
.main .family-title {color:#2c2c2c;font-size:46px;font-style:normal;font-weight:800;letter-spacing:0;line-height:1.12;white-space:pre-line;}
.main .family-text {color:#65707a;font-size:17px;line-height:1.7;padding-top:16px;}
.main .family-btn {background-color:var(--green);padding:14px;margin-top:20px;}
.main .info-col {padding:0 8px;}
.main .info-card {background:#fff;border:1px solid #edf1f2;border-radius:18px;box-shadow:0 8px 22px rgba(0,0,0,0.045);color:#333;min-height:260px;overflow:hidden;padding:30px 26px;position:relative;transition:var(--transition);}
.main .info-card:hover {box-shadow:0 16px 32px rgba(0,0,0,0.08);transform:translateY(-4px);}
.main .info-card h4 {color:#2c2c2c;font-weight:800;}
.main .info-card p {color:#65707a;line-height:1.6;}
.main .info-card-blue {background:#fff;}
.main .info-card-purple {background:#fff;}
.main .info-card-img {position:absolute;bottom:-20px;right:40px;height:auto;}
.main .info-card-img-1 {width:90px;}
.main .info-card-img-2 {width:80px;}
.main .footer-container {background-color:#333;}
@media (min-width:1000px) {.main .floating-div {padding:0;}}
@media (min-width:1200px) {.main .footer-container {height:0;}}
@media (max-width:1200px) {.main .footer-container {height:0;}}
@media (max-width:1000px) {.main .floating-div {padding:0;} .main .footer-container {height:0;}}
@media (max-width:991px) {.main .section-title {font-size:36px;} .main .pet-bg-image {height:auto!important;} .main .pet-bg-image img {object-position:left center!important;} .main .pet-bg-overlay {width:100%!important;background:linear-gradient(to right,#d5e5ee 0%,rgba(213,229,238,0.95) 48%,rgba(248,249,250,0.82) 72%,rgba(248,249,250,0) 100%)!important;}}
@media (max-width:770px) {.main .footer-container {height:0;}}
@media (max-width:767px) {.main .hero-btn-group {justify-content:center;} .main .home-primary-btn,.main .home-secondary-btn {width:100%;} .main .scruffy-fluffy-section {padding:60px 0 80px;} .main .section-title {font-size:32px;} .main .family-title {font-size:34px;} .main .family-section {padding:56px 18px 72px;}}
@media (max-width:480px) {}
@media (max-width:600px) {.main .footer-container {height:0;}}
@media (max-width:450px) {.main .footer-container {height:0;}}

/** page - pricing **/
.pricing-section { animation: pricing_section_animation 5s ease-in-out 0s infinite alternate; background: linear-gradient(180deg, #1f0038 0%, #603489 100%); color: #ffffff; display: flex; justify-content: center; padding: clamp(2rem, 6vw, 5rem) 1rem 200px; }
.pricing-section .container { margin: 0 auto; max-width: 1200px; text-align: center; width: 100%; }
.pricing-section .title { color: #ffffff; font-family: "Inter", "Helvetica Neue", Arial, sans-serif; font-size: clamp(1.6rem, 6.5vw, 4.8rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 0.6rem; padding-bottom: 15px; }
.pricing-section .subtitle { color: rgba(255, 255, 255, 0.9); font-size: clamp(0.95rem, 1.7vw, 1.15rem); margin: 0 0 1.6rem; margin-left: auto; margin-right: auto; max-width: 900px; }
.pricing-section .highlights { align-items: flex-start; display: flex; flex-wrap: wrap; gap: clamp(1rem, 3vw, 2.2rem); justify-content: center; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.pricing-section .highlights li { align-items: center; background: rgba(255, 255, 255, 0.03); border-radius: 10px; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; color: rgba(255, 255, 255, 0.8); display: flex; font-size: 0.98rem; gap: 0.6rem; max-width: 320px; min-width: 220px; padding: 0.6rem 0.9rem; }
.pricing-section .highlights li strong { color: #fff; font-weight: 600; }
.check { color: #8ef0a3; flex: 0 0 5px; }
.pricing-section .toggle-buttons { background: rgba(255, 255, 255, 0.1); border-radius: 30px; display: inline-flex; margin-top: 10px; overflow: hidden; }
.pricing-section .toggle-buttons a { color: white; font-weight: bold; padding: 10px 20px; text-decoration: none; transition: background 0.3s; }
.pricing-section .toggle-buttons a.active { background-color: white; color: #2c0048; }
.pricing-table { display: flex; flex-wrap: wrap; justify-content: center; margin-top: -200px; }
.pricing-table .card { background: white; border: solid 0; border-radius: 12px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; margin: 10px; position: relative; transition: background 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease, transform 0.25s ease; width: 250px; will-change: transform, box-shadow, background; }
.pricing-table .card::before { background: radial-gradient(90% 106.38% at 122.92% 50.56%, rgba(240, 36, 246, .45) 0%, rgba(130, 0, 250, .45) 100%); border-radius: 12px; content: ""; inset: 0; opacity: 0; pointer-events: none; position: absolute; transform: scale(1); transition: opacity 0.35s cubic-bezier(.2, .9, .2, 1), transform 0.35s cubic-bezier(.2, .9, .2, 1); z-index: 0; }
.pricing-table .card:hover::before { opacity: 1; transform: scale(1); }
.pricing-table .card:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12); transform: translateY(-1px); }
.pricing-table .price { font-size: 32px; font-weight: 600; margin: 10px 0; display: flex; gap: 7px; }
.pricing-table .price .dollar { font-size: 27px; padding-top: 4px; }
.pricing-table .price .number { font-size: 45px; }
.pricing-table .btn { background: #2c0048; border-radius: 8px; color: white; font-weight: bold; margin-bottom: 15px; padding: 10px; text-align: center; text-decoration: none; }
.pricing-table .features { color: #333; font-size: 14px; }
.pricing-table .features ul { list-style: none; padding: 0; }
.pricing-table .features li { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="green" viewBox="0 0 16 16"><path d="M13.485 1.929a.75.75 0 010 1.06L6.75 9.724l-3.236-3.235a.75.75 0 111.06-1.06l2.176 2.175 6.235-6.235a.75.75 0 011.06 0z"/></svg>') no-repeat left center; background-size: 16px; margin-bottom: 8px; padding-left: 20px; }
.pricing-table .card-content { background-color: white; border-radius: 12px; margin: 3px; padding: 20px; position: relative; z-index: 1; height: 100%; }
.pricing-table .type { text-align: center; font-size: 17px; font-weight: bold; }
/* Login & Signup Pages (shared by forgotPassword/resetPassword) */
.line-or { color: #aaa; margin-bottom: 10px; margin-top: 10px; padding-bottom: 10px; padding-top: 10px; position: relative; }
.line-or .hr-or { height: 1px; margin-bottom: 0 !important; margin-top: 0 !important; }
.line-or .span-or { background-color: #fff; display: block; left: 50%; margin-left: -25px; position: absolute; text-align: center; top: -2px; width: 50px; }
.btn-primary-gradient { background-image: linear-gradient(to right, var(--green) 0%, var(--green-hover) 51%, var(--green) 100%); background-size: 200% auto; border-radius: 4px; color: white; display: block; text-align: center; text-transform: uppercase; transition: 0.5s; }
.btn-primary-gradient:hover { background-position: right center; color: #fff; text-decoration: none; }
.css-login .form-control { background: white; border: 1px solid #bcbcbc; border-radius: 50px; box-shadow: none; color: #000; font-size: 16px; height: 48px; padding-left: 20px; padding-right: 20px; transition: all 0.2s ease-in-out; }
.css-login .form-control::placeholder { color: rgba(0, 0, 0, 0.2) !important; }
.css-login .form-control:focus, .css-login .form-control:active { background: rgba(0, 0, 0, 0.07); border-color: transparent; box-shadow: none; outline: none !important; }
.css-login .wrap { border-radius: 5px; box-shadow: 0px 2px 20px 6px rgb(202 202 202 / 23%); width: 100%; overflow: hidden; }
.css-login .text-wrap, .css-login .login-wrap { width: 50%; }
.css-login .login-wrap { background: #fff; position: relative; box-shadow: 0 0 30px rgba(0,0,0,0.08); }
.css-login .login-wrap h3 { color: var(--green); font-weight: 700; }
.css-login .text-wrap-custom { background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 50%, var(--green) 100%); color: #fff; position: relative; overflow: hidden; }
.css-login .text-wrap-custom::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: authFloat 15s ease-in-out infinite; }
.css-login .text-wrap-custom h2 { font-weight: 800; margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.1); color: #fff; }
.css-login .text-wrap-custom p { font-size: 1.1rem; margin-bottom: 1.5rem; opacity: 0.95; }
.css-login .btn { border-radius: 50px; padding: 10px 20px; }
.css-login .btn-outline-white-custom { background: white; border: 2px solid #fff; color: var(--green); font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.css-login .btn-outline-white-custom:hover { background: #fff; color: var(--green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.css-login .form-control:focus { border-color: var(--green); box-shadow: 0 0 0 0.2rem rgba(91, 154, 139, 0.15); }
.css-login .btn-primary-gradient { box-shadow: 0 4px 15px rgba(91, 154, 139, 0.3); }
.css-login .btn-primary-gradient:hover { box-shadow: 0 6px 20px rgba(91, 154, 139, 0.4); transform: translateY(-2px); }
.css-login .btn-outline-primary { border-color: var(--green); color: var(--green); }
.css-login .btn-outline-primary:hover { background-color: var(--green); border-color: var(--green); color: #fff; }
@keyframes authFloat { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(30px, -30px) rotate(120deg); } 66% { transform: translate(-20px, 20px) rotate(240deg); } }
/* Auth Pages (new login/signup design) */
.auth-container { display: flex; width: 100%; min-height: 100vh; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.auth-left { flex: 1; background: #fff; display: flex; align-items: start; justify-content: center; padding: 60px 40px; }
.auth-left-inner { width: 100%; max-width: 440px; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin: 15px 0 50px 0; }
.auth-logo-img { height: 60px; width: auto; }
.auth-title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.auth-subtitle { font-size: 14px; color: #666; margin-bottom: 32px; }
.auth-subtitle a { color: #1a1a1a; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.auth-subtitle a:hover { color: var(--green); }
.auth-form-group { margin-bottom: 18px; }
.auth-label { display: block; font-size: 13px; font-weight: 500; color: #333; margin-bottom: 8px; }
.auth-input-wrapper { position: relative; }
.auth-input { width: 100%; height: 48px; border: 1.5px solid #d4d4d4; border-radius: 10px; padding: 0 16px; font-size: 14px; font-family: 'Inter', sans-serif; color: #333; background: #fff; outline: none; transition: border-color 0.2s; }
.auth-input::placeholder { color: #aaa; }
.auth-input:focus { border-color: var(--green); }
.auth-eye-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #999; display: flex; align-items: center; justify-content: center; padding: 4px; }
.auth-eye-btn:hover { color: #333; }
.auth-options-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.auth-checkbox-wrapper { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.auth-checkbox-wrapper input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.auth-checkbox-label { font-size: 13px; color: #555; }
.auth-forgot-link { font-size: 13px; font-weight: 500; color: #1a1a1a; text-decoration: underline; text-underline-offset: 3px; }
.auth-forgot-link:hover { color: var(--green); }
.auth-btn-submit { width: 100%; height: 50px; background: var(--green); color: #fff; border: none; border-radius: 25px; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.2s; }
.auth-btn-submit:hover { background: var(--green-hover); }
.auth-btn-submit.disabled { opacity: 0.6; cursor: not-allowed; }
.auth-divider { display: flex; align-items: center; gap: 16px; margin: 22px 0; }
.auth-divider-line { flex: 1; height: 1px; background: #e0e0e0; }
.auth-divider-text { font-size: 12px; color: #999; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.auth-btn-social { width: 100%; height: 48px; border: 1.5px solid #d4d4d4; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 500; color: #333; font-family: 'Inter', sans-serif; cursor: pointer; transition: border-color 0.2s, background 0.2s; margin-bottom: 12px; text-decoration: none; }
.auth-btn-social:hover { border-color: #999; background: #fafafa; color: #333; text-decoration: none; }
.auth-agree-row { display: flex; align-items: flex-start; gap: 8px; }
.auth-agree-checkbox { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.auth-agree-label { font-size: 13px; color: #555; cursor: pointer; line-height: 1.4; }
.auth-agree-link { font-size: 13px; color: var(--green); text-decoration: none; white-space: nowrap; }
.auth-agree-link:hover { text-decoration: underline; }
.auth-right { width: 45%; background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 50%, var(--green) 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.auth-right-content { position: relative; z-index: 2; padding: 60px; text-align: center; }
.auth-right-decor { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); transition: all 1s ease; }
.auth-right-decor-1 { width: 400px; height: 400px; top: -120px; right: -100px; animation: authFloat1 15s infinite ease-in-out; }
.auth-right-decor-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; animation: authFloat2 18s infinite ease-in-out; }
.auth-right-decor-3 { width: 200px; height: 200px; top: 40%; left: 50%; background: rgba(255,255,255,0.04); animation: authFloat3 22s infinite ease-in-out; }
@keyframes authFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 20px); } }
@keyframes authFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }
@keyframes authFloat3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-48%, -52%) scale(1.1); } }
.auth-right-logo { height: 50px; width: auto; margin-bottom: 30px; }
.auth-right-text h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.auth-right-text p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 30px; }
.auth-right-features { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin: 0 auto; max-width: 260px; }
.auth-right-feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }

/* Pricing Page Styles */
.hero-section{padding:80px 30px 60px;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:white;position:relative;overflow:hidden}
.hero-section::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');opacity:0.3}
.hero-container{max-width:1200px;margin:0 auto;position:relative;z-index:1}
.hero-title{font-size:48px;font-weight:800;text-align:center;margin-bottom:20px;letter-spacing:-0.5px;text-shadow:0 2px 20px rgba(0,0,0,0.2)}
.hero-subtitle{font-size:18px;text-align:center;margin-bottom:50px;opacity:0.95;max-width:600px;margin-left:auto;margin-right:auto;line-height:1.6}
.hero-highlights{display:flex;justify-content:center;gap:50px;margin-bottom:50px;flex-wrap:wrap}
.highlight-item{display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center}
.highlight-icon{width:60px;height:60px;background:rgba(255,255,255,0.2);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;border:2px solid rgba(255,255,255,0.4);position:relative}
.highlight-icon::before{content:'';position:absolute;inset:-5px;border-radius:50%;border:1px solid rgba(255,255,255,0.2)}
.highlight-icon i{color:white;font-size:26px}
.highlight-item span{font-size:14px;font-weight:500;opacity:0.95;max-width:120px;line-height:1.4}
.service-tabs{display:flex;justify-content:center;gap:15px;flex-wrap:wrap;max-width:700px;margin:0 auto}
.service-tab{display:flex;align-items:center;gap:10px;padding:15px 30px;background:rgba(255,255,255,0.1);border:2px solid rgba(255,255,255,0.3);border-radius:12px;color:white;text-decoration:none;font-weight:600;font-size:15px;transition:all 0.3s ease;backdrop-filter:blur(10px)}
.service-tab i{font-size:20px}
.service-tab:hover{background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.5);transform:translateY(-2px);box-shadow:0 5px 20px rgba(0,0,0,0.2)}
.common-features-section{padding:60px 30px;background:linear-gradient(135deg,#f5f7fa 0%,#c3cfe2 100%)}
.common-features-card{max-width:1200px;margin:0 auto;background:white;border-radius:20px;padding:40px;box-shadow:0 10px 40px rgba(0,0,0,0.1)}
.common-features-title{text-align:center;font-size:28px;font-weight:700;color:#2c3e50;margin-bottom:30px;display:flex;align-items:center;justify-content:center;gap:12px}
.common-features-title i{color:#f39c12;font-size:32px}
.common-features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
.common-feature-item{display:flex;align-items:center;gap:12px;padding:15px;background:#f8f9fa;border-radius:10px;transition:all 0.3s ease}
.common-feature-item:hover{background:#e9ecef;transform:translateY(-2px)}
.common-feature-item i{color:var(--green);font-size:20px;flex-shrink:0}
.common-feature-item span{font-size:15px;color:#2c3e50;font-weight:500}
.pricing-comparison-section{padding:60px 30px 100px;background:white}
.comparison-title{text-align:center;font-size:32px;font-weight:700;color:#2c3e50;margin-bottom:10px}
.comparison-subtitle{text-align:center;font-size:16px;color:#7f8c8d;margin-bottom:40px}
.pricing-table-wrapper{max-width:1400px;margin:0 auto;overflow-x:auto;border-radius:15px;box-shadow:0 5px 30px rgba(0,0,0,0.1);-webkit-overflow-scrolling:touch}
.pricing-comparison-table{width:100%;min-width:1200px;border-collapse:collapse;background:white}
.pricing-comparison-table thead{color:white}
.pricing-comparison-table th{padding:30px 15px;text-align:center;font-weight:600}
.feature-column{text-align:left!important;min-width:200px;font-size:16px}
.size-column{min-width:150px}
.size-header{display:flex;flex-direction:column;align-items:center;gap:10px}
.size-name{font-size:16px;font-weight:600}
.size-price{font-size:36px;font-weight:700;display:flex;align-items:flex-start;gap:2px}
.size-price .dollar{font-size:20px;margin-top:5px}
.btn-book{background:white;padding:10px 24px;border-radius:25px;text-decoration:none;font-weight:600;font-size:14px;transition:all 0.3s ease;display:inline-block}
.btn-book:hover{background:#f8f9fa;transform:scale(1.05);box-shadow:0 5px 15px rgba(0,0,0,0.2)}
.pricing-comparison-table tbody tr{border-bottom:1px solid #ecf0f1}
.pricing-comparison-table tbody tr:hover{background:#f8f9fa}
.section-header td{background:#ecf0f1;padding:15px 20px;font-size:16px;color:#2c3e50}
.feature-name{padding:20px;font-weight:500;color:#2c3e50;font-size:15px}
.feature-value{text-align:center;padding:20px}
.feature-pricing{display:flex;flex-direction:column;align-items:center;gap:5px}
.old-price{text-decoration:line-through;color:#95a5a6;font-size:13px}
.cost{color:#e67e22;font-weight:600;font-size:15px}
.price{color:var(--green);font-weight:600;font-size:15px}
.not-available{color:#bdc3c7;font-size:20px}
.price-discounted { color: #e67e22 !important; font-weight: 600; }

.pricing-comparison-table { table-layout: fixed; }
.feature-column { width: 180px !important; min-width: 180px !important; }
.m-paid-list { list-style: none; padding: 12px; margin: 0; background: #fffcf0; border-radius: 12px; }
.m-paid-row { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.m-paid-row:last-child { border-bottom: none; }
.split-price { display: flex; flex-direction: column; gap: 4px; padding: 5px 15px; background: rgba(0,0,0,0.1); border-radius: 8px; width: 100%; }
.price-row-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 2px 0; }
.price-row-item .label { font-size: 0.7rem; opacity: 0.8; font-weight: 500; text-transform: uppercase; }
.price-mini { color: #f8f9fa; font-size: 1.1rem; font-weight: 600; }
.price-full { color: #ffffff; font-size: 1.4rem; font-weight: 800; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 4px; }
.price-merged { color: #ffffff; font-size: 1.6rem; font-weight: 800; padding: 10px 0; }
.legend-section { background: #f8f9fa !important; border-top: 2px solid #eee; border-bottom: 2px solid #eee; }
.comparison-header-row { display: flex; align-items: center; gap: 20px; padding: 10px 20px; }
.comp-category-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; color: #fff; }
.badge-mini { background: #26a69a; }
.badge-full { background: #7e57c2; }

.comp-cell { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 8px; align-items: center; justify-items: center; }
.comp-mini { color: #26a69a; }
.comp-full { color: #7e57c2; }
.comp-line { width: 1px; height: 16px; background: #eee; }
.legend-wrapper { display: flex; gap: 20px; align-items: center; font-size: 0.9rem; }
.common-items-container { display: inline-flex; flex-wrap: wrap; gap: 8px 12px; align-items: center;}
.common-item-tag { font-size: 0.85rem; font-weight: 600; color: #2c3e50; display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.common-item-tag i { color: var(--text-color); font-size: 1rem; }
.included-all-cell { background: #f0fdf4 !important; padding: 20px;}
.included-all-cell i { font-size: 1.5rem; color: #26a69a; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-mini { background: #26a69a; }
.dot-full { background: #7e57c2; }
.base-price-summary-row { background: #f8f9fa !important; border-top: 2px solid #dee2e6; border-bottom: 2px solid #dee2e6; }
.summary-price-box { font-weight: 800; font-size: 1.2rem; }
.size-quick-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 10px 0 25px; }
.size-nav-tag { background: #fff; border: 1px solid #efefef; padding: 6px 14px; border-radius: 18px; font-size: 0.75rem; font-weight: 800; color: #666; box-shadow: 0 4px 12px rgba(0,0,0,0.04); transition: all 0.2s; }
.size-nav-tag:active { transform: scale(0.9); background: #fdfdfd; }
.m-card-header { padding: 18px 20px; color: #fff; position: relative; overflow: hidden; }
.m-card-header::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(255,255,255,0.12), transparent); pointer-events: none; }
.m-header-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.m-card-size-name { font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -0.3px; margin: 0; }
.m-header-prices { display: flex; gap: 8px; align-items: center; position: relative; z-index: 1; }
.m-hp-item { display: flex; align-items: center; gap: 5px; background: rgba(0,0,0,0.15); padding: 5px 12px; border-radius: 10px; }
.m-hp-label { font-size: 0.55rem; text-transform: uppercase; font-weight: 800; letter-spacing: 0.5px; opacity: 0.85; }
.m-hp-val { font-size: 1.15rem; font-weight: 900; }
.m-hp-mini { border-left: 3px solid #26a69a; }
.m-hp-full { border-left: 3px solid #7e57c2; }
.m-hp-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }
.m-ftag { font-size: 0.78rem; padding: 4px 10px; border-radius: 12px; background: #f4f4f4; color: #444; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; border: 1px solid rgba(0,0,0,0.02); }
.m-pkg-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 15px; }
.m-pkg-col { display: flex; flex-direction: column; gap: 0; }
.m-pkg-col-header { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 10px; border-radius: 8px 8px 0 0; display: flex; align-items: center; gap: 5px; }
.m-pkg-col-header-mini { background: rgba(38,166,154,0.1); color: #26a69a; border-bottom: 2px solid #26a69a; }
.m-pkg-col-header-full { background: rgba(126,87,194,0.1); color: #7e57c2; border-bottom: 2px solid #7e57c2; }
.m-pkg-col-list { display: flex; flex-direction: column; gap: 0; background: #fafafa; border-radius: 0 0 8px 8px; padding: 6px 0; }
.m-pkg-col-item { font-size: 0.78rem; font-weight: 600; color: #444; padding: 5px 6px; display: flex; align-items: center; gap: 5px; }
.m-pkg-col-item i { font-size: 0.7rem; }
.m-footer-container { position: relative; padding: 0; }
.m-footer-prices { display: flex; justify-content: center; align-items: center; gap: 20px; padding: 10px 0; }
.m-footer-price-item { display: flex; align-items: center; gap: 6px; font-size: 1rem; font-weight: 800; }
.m-footer-price-item .fp-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; opacity: 0.7; }
.m-fp-mini { color: #26a69a; }
.m-fp-full { color: #7e57c2; }
.m-fp-dot { width: 4px; height: 4px; border-radius: 50%; background: #ddd; }
.m-btn-badge { position: absolute; top: -8px; right: 12px; background: #333; color: #fff; padding: 3px 12px; border-radius: 10px; font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.1); }
.btn-book-mobile { position: relative; width: 100%; display: block; text-align: center; border-radius: 14px; padding: 14px !important; font-size: 1rem !important; font-weight: 700 !important; }

.pricing-note i{color:#856404;font-size:20px;flex-shrink:0;}
.pricing-note span{color:#856404;font-size:14px;line-height:1.6}
.common-features-section-mobile{padding:40px 20px;background:linear-gradient(135deg,#f5f7fa 0%,#c3cfe2 100%)}
.container-mobile{max-width:100%;margin:0 auto}
.common-features-card-mobile{background:white;border-radius:15px;padding:25px 20px;box-shadow:0 5px 20px rgba(0,0,0,0.1)}
.common-features-title-mobile{text-align:center;font-size:22px;font-weight:700;color:#2c3e50;margin-bottom:20px;display:flex;align-items:center;justify-content:center;gap:10px}
.common-features-title-mobile i{color:#f39c12;font-size:24px}
.common-features-list-mobile{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.common-feature-item-mobile{display:flex;align-items:center;gap:8px;padding:10px 8px;background:#f8f9fa;border-radius:8px}
.common-feature-item-mobile i{color:var(--green);font-size:16px;flex-shrink:0}
.common-feature-item-mobile span{font-size:13px;color:#2c3e50;font-weight:500;line-height:1.3}
.pricing-cards-section-mobile{padding:40px 20px 60px;background:white}
.pricing-title-mobile{text-align:center;font-size:26px;font-weight:700;color:#2c3e50;margin-bottom:8px}
.pricing-subtitle-mobile{text-align:center;font-size:14px;color:#7f8c8d;margin-bottom:30px}
.pricing-cards-wrapper-mobile{display:flex;flex-direction:column;gap:20px}
.pricing-card-mobile{background:white;border-radius:15px;box-shadow:0 4px 20px rgba(0,0,0,0.1);overflow:visible;border:2px solid #e9ecef;transition:all 0.3s ease;position:relative}
.m-size-corner-badge { position: absolute; top: -10px; right: 15px; background: #333; color: #fff; padding: 5px 16px; border-radius: 12px; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; z-index: 5; box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.pricing-card-mobile:active{transform:scale(0.98)}
.card-header-mobile{color:white;padding:20px;display:flex;align-items:center;justify-content:center;position:relative;min-height:80px;border-radius:13px 13px 0 0}
.size-badge-mobile{position:absolute;top:12px;right:12px;background:rgba(255,255,255,0.25);padding:6px 12px;border-radius:20px;font-size:12px;font-weight:600;backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.3)}
.price-display-mobile{display:flex;align-items:flex-start;gap:2px}
.dollar-mobile{font-size:22px;font-weight:700;margin-top:8px}
.amount-mobile{font-size:56px;font-weight:800;line-height:1}
.card-body-mobile{padding:20px;background:#f8f9fa}
.services-title-mobile{font-size:16px;font-weight:600;color:#2c3e50;margin-bottom:15px}
.services-list-mobile{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.service-item-mobile{display:flex;justify-content:space-between;align-items:center;padding:12px;background:white;border-radius:8px;gap:10px}
.service-name-mobile{font-size:14px;color:#2c3e50;font-weight:500;flex:1}
.service-pricing-mobile{display:flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:flex-end}
.old-price-mobile{text-decoration:line-through;color:#95a5a6;font-size:12px}
.cost-mobile{color:#e67e22;font-weight:600;font-size:14px}
.price-mobile{color:var(--green);font-weight:600;font-size:14px}
.card-footer-mobile{padding:0 20px 20px;display:flex;flex-direction:column;gap:12px}

.btn-book-mobile{display:block;width:100%;color:white;padding:16px 20px;border-radius:10px;text-align:center;text-decoration:none;font-weight:700;font-size:17px;transition:all 0.3s ease;position:relative;overflow:visible}
.btn-book-mobile:active{transform:scale(0.98);opacity:0.95}

.pricing-note-mobile{margin-top:30px;padding:15px;background:#fff3cd;border-left:4px solid #ffc107;border-radius:8px;display:flex;align-items:center;justify-content:center;gap:10px}
.pricing-note-mobile i{color:#856404;font-size:18px;flex-shrink:0;}
.pricing-note-mobile span{color:#856404;font-size:13px;line-height:1.5}
.site-footer { background-color: rgb(51,51,51); color: white; }
.site-footer .footer-logo img { max-height: 60px; border-radius: 8px; }
.site-footer .footer-tagline { font-size: 20px; color: #b0b0b0; font-weight: 500; }
.site-footer .footer-tagline span { font-size: 35px; color: var(--green); }
.site-footer a { text-decoration: none; color: white; transition: var(--transition); }
.site-footer a:hover { color: var(--green); }
.site-footer .social-icons a { color: white; }
.site-footer .social-icons a:hover { color: var(--green); }

.dog-grooming-page {background:#fff;color:#263238;overflow:hidden;}
.dog-grooming-page .dg-container {max-width:1180px;margin:0 auto;padding:0 24px;}
.dog-grooming-page .dg-hero {background:linear-gradient(135deg,#e8f5f1 0%,#f7fbff 55%,#fff 100%);padding:80px 0 70px;}
.dog-grooming-page .dg-hero-inner {max-width:1180px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,0.95fr);gap:48px;align-items:center;}
.dog-grooming-page .dg-eyebrow,.dog-grooming-page .dg-section-label {display:inline-flex;align-items:center;width:max-content;background:rgba(91,154,139,0.12);color:var(--green);border:1px solid rgba(91,154,139,0.2);border-radius:999px;padding:8px 16px;font-size:13px;font-weight:800;text-transform:uppercase;}
.dog-grooming-page h1 {font-size:56px;line-height:1.05;margin:18px 0 18px;color:#1f2d2b;font-weight:850;}
.dog-grooming-page h2 {font-size:38px;line-height:1.18;margin:14px 0 18px;color:#1f2d2b;font-weight:820;}
.dog-grooming-page h3 {font-size:20px;line-height:1.25;margin:0 0 10px;color:#1f2d2b;font-weight:760;}
.dog-grooming-page p {font-size:16px;line-height:1.75;color:#5b6664;margin:0 0 16px;}
.dog-grooming-page .dg-lede {font-size:20px;line-height:1.65;max-width:680px;color:#4b5b58;}
.dog-grooming-page .dg-hero-actions,.dog-grooming-page .dg-price-actions {display:flex;gap:14px;flex-wrap:wrap;align-items:center;margin-top:28px;}
.dog-grooming-page .dg-primary-btn,.dog-grooming-page .dg-secondary-btn {display:inline-flex;align-items:center;justify-content:center;min-height:48px;border-radius:999px;padding:12px 22px;font-weight:800;text-decoration:none;transition:var(--transition);}
.dog-grooming-page .dg-primary-btn {background:var(--green);color:#fff;box-shadow:0 12px 28px rgba(91,154,139,0.28);}
.dog-grooming-page .dg-primary-btn:hover {background:var(--green-hover);color:#fff;transform:translateY(-2px);}
.dog-grooming-page .dg-secondary-btn {background:#fff;color:#1f2d2b;border:1px solid rgba(31,45,43,0.14);}
.dog-grooming-page .dg-secondary-btn:hover {color:var(--green);border-color:rgba(91,154,139,0.35);transform:translateY(-2px);}
.dog-grooming-page .dg-secondary-light {background:rgba(255,255,255,0.16);color:#fff;border-color:rgba(255,255,255,0.36);}
.dog-grooming-page .dg-secondary-light:hover {background:#fff;color:var(--green);}
.dog-grooming-page .dg-trust-row {display:flex;gap:12px;flex-wrap:wrap;margin-top:28px;}
.dog-grooming-page .dg-trust-row span {display:inline-flex;align-items:center;gap:7px;background:#fff;border:1px solid rgba(31,45,43,0.08);border-radius:999px;padding:8px 12px;color:#42524f;font-size:14px;font-weight:700;}
.dog-grooming-page .dg-trust-row i {color:var(--green);}
.dog-grooming-page .dg-hero-media {position:relative;border-radius:30px;padding:0;background:transparent;box-shadow:none;overflow:visible;}
.dog-grooming-page .dg-hero-media::before {content:"";position:absolute;inset:18px -16px -18px 16px;border-radius:30px;background:linear-gradient(135deg,rgba(91,154,139,0.24),rgba(52,152,219,0.14));z-index:0;}
.dog-grooming-page .dg-hero-media img {position:relative;z-index:1;width:100%;aspect-ratio:4 / 3;object-fit:cover;display:block;border-radius:30px;box-shadow:0 24px 58px rgba(40,62,58,0.2);}
.dog-grooming-page .dg-section {padding:78px 0;}
.dog-grooming-page .dg-two-col {display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,0.86fr);gap:48px;align-items:center;}
.dog-grooming-page .dg-two-col-reverse {grid-template-columns:minmax(320px,0.88fr) minmax(0,1fr);}
.dog-grooming-page .dg-highlight-box {background:#f7fbfa;border:1px solid rgba(91,154,139,0.16);border-radius:16px;padding:30px;box-shadow:0 16px 36px rgba(40,62,58,0.06);}
.dog-grooming-page .dg-highlight-box ul {list-style:none;margin:0;padding:0;display:grid;gap:14px;}
.dog-grooming-page .dg-highlight-box li {position:relative;padding-left:28px;color:#41504d;font-weight:700;line-height:1.5;}
.dog-grooming-page .dg-highlight-box li::before {content:"";position:absolute;left:0;top:8px;width:12px;height:12px;border-radius:50%;background:var(--green);}
.dog-grooming-page .dg-services {background:#f8faf9;}
.dog-grooming-page .dg-centered-heading {max-width:760px;margin:0 auto 38px;text-align:center;display:flex;flex-direction:column;align-items:center;}
.dog-grooming-page .dg-service-grid {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.dog-grooming-page .dg-service-item {background:#fff;border:1px solid rgba(31,45,43,0.08);border-radius:14px;padding:26px;box-shadow:0 14px 34px rgba(40,62,58,0.06);}
.dog-grooming-page .dg-service-item i {display:inline-flex;margin-bottom:18px;font-size:30px;color:var(--green);}
.dog-grooming-page .dg-service-item p {font-size:15px;margin-bottom:0;}
.dog-grooming-page .dg-photo-panel {position:relative;background:transparent;border-radius:28px;padding:0;box-shadow:none;overflow:visible;}
.dog-grooming-page .dg-photo-panel::before {content:"";position:absolute;inset:-14px 18px 18px -14px;border-radius:28px;background:rgba(91,154,139,0.12);z-index:0;}
.dog-grooming-page .dg-photo-panel img {position:relative;z-index:1;width:100%;aspect-ratio:4 / 3;object-fit:cover;display:block;border-radius:28px;box-shadow:0 20px 46px rgba(40,62,58,0.16);}
.dog-grooming-page .dg-step-list {display:grid;gap:16px;margin-top:24px;}
.dog-grooming-page .dg-step {display:grid;grid-template-columns:44px 1fr;gap:16px;align-items:start;}
.dog-grooming-page .dg-step span {width:44px;height:44px;border-radius:50%;background:var(--green);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:850;}
.dog-grooming-page .dg-step p {margin-bottom:0;}
.dog-grooming-page .dg-pricing-cta {padding-top:30px;}
.dog-grooming-page .dg-pricing-band {display:grid;grid-template-columns:minmax(0,1fr) auto;gap:32px;align-items:center;background:linear-gradient(135deg,#315f57 0%,#5b9a8b 100%);border-radius:18px;padding:42px;color:#fff;}
.dog-grooming-page .dg-pricing-band h2,.dog-grooming-page .dg-pricing-band p {color:#fff;}
.dog-grooming-page .dg-pricing-band .dg-section-label {background:rgba(255,255,255,0.14);color:#fff;border-color:rgba(255,255,255,0.2);}
.dog-grooming-page .dg-faq {background:#fff;}
.dog-grooming-page .dg-faq-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.dog-grooming-page .dg-faq-item {background:#f8faf9;border:1px solid rgba(31,45,43,0.08);border-radius:14px;padding:26px;}
.dog-grooming-page .dg-faq-item p {margin-bottom:0;}
.dog-grooming-page .dg-final-cta {background:#f0f7f5;text-align:center;padding:70px 0;}
.dog-grooming-page .dg-final-cta h2 {margin-top:0;}
.dog-grooming-page .dg-final-cta p {max-width:560px;margin:0 auto 24px;}
@media (max-width:991px) {.dog-grooming-page h1 {font-size:44px;} .dog-grooming-page h2 {font-size:32px;} .dog-grooming-page .dg-hero-inner,.dog-grooming-page .dg-two-col,.dog-grooming-page .dg-two-col-reverse,.dog-grooming-page .dg-pricing-band {grid-template-columns:1fr;} .dog-grooming-page .dg-service-grid {grid-template-columns:repeat(2,minmax(0,1fr));} .dog-grooming-page .dg-price-actions {justify-content:flex-start;}}
@media (max-width:767px) {.dog-grooming-page .dg-hero {padding:56px 0 46px;} .dog-grooming-page .dg-section {padding:56px 0;} .dog-grooming-page h1 {font-size:36px;} .dog-grooming-page h2 {font-size:28px;} .dog-grooming-page .dg-lede {font-size:17px;} .dog-grooming-page .dg-service-grid,.dog-grooming-page .dg-faq-grid {grid-template-columns:1fr;} .dog-grooming-page .dg-hero-actions,.dog-grooming-page .dg-price-actions {align-items:stretch;flex-direction:column;} .dog-grooming-page .dg-primary-btn,.dog-grooming-page .dg-secondary-btn {width:100%;} .dog-grooming-page .dg-pricing-band {padding:28px;} .dog-grooming-page .dg-trust-row span {width:100%;}}
.blog-page,.article-page {background:#fff;color:#263238;}
.blog-container,.article-container {max-width:1120px;margin:0 auto;padding:0 24px;}
.blog-hero {background:linear-gradient(135deg,#f0f7f5 0%,#fff 100%);padding:76px 0 58px;text-align:center;}
.blog-eyebrow {display:inline-flex;background:rgba(91,154,139,0.12);color:var(--green);border:1px solid rgba(91,154,139,0.2);border-radius:999px;padding:8px 16px;font-size:13px;font-weight:800;text-transform:uppercase;}
.blog-page h1 {font-size:48px;line-height:1.12;margin:18px auto 16px;max-width:820px;color:#1f2d2b;font-weight:850;}
.blog-page .blog-hero p {font-size:18px;line-height:1.7;color:#5b6664;max-width:760px;margin:0 auto;}
.blog-list-section {padding:70px 0 90px;}
.blog-grid {display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.blog-card {background:#fff;border:1px solid rgba(31,45,43,0.08);border-radius:16px;overflow:hidden;box-shadow:0 16px 38px rgba(40,62,58,0.07);}
.blog-card-image {display:block;overflow:hidden;background:#f8faf9;}
.blog-card-image img {width:100%;aspect-ratio:4 / 3;display:block;object-fit:cover;transition:transform 0.35s ease;}
.blog-card:hover .blog-card-image img {transform:scale(1.05);}
.blog-card-body {padding:24px;}
.blog-meta,.article-meta {display:flex;gap:10px;flex-wrap:wrap;color:var(--green);font-size:13px;font-weight:800;text-transform:uppercase;margin-bottom:12px;}
.blog-card h2 {font-size:22px;line-height:1.25;margin:0 0 12px;}
.blog-card h2 a {color:#1f2d2b;text-decoration:none;}
.blog-card h2 a:hover {color:var(--green);}
.blog-card p {color:#5b6664;line-height:1.65;margin:0 0 18px;}
.blog-read-link {display:inline-flex;align-items:center;gap:8px;color:var(--green);font-weight:800;text-decoration:none;}
.article-hero {background:#f8faf9;padding:58px 0 46px;}
.article-back-link {display:inline-flex;align-items:center;gap:8px;color:var(--green);font-weight:800;text-decoration:none;margin-bottom:22px;}
.article-page h1 {font-size:48px;line-height:1.12;max-width:880px;margin:12px 0 16px;color:#1f2d2b;font-weight:850;}
.article-hero p {font-size:18px;line-height:1.7;color:#5b6664;max-width:780px;}
.article-hero img {width:100%;max-height:520px;object-fit:cover;border-radius:24px;box-shadow:0 22px 54px rgba(40,62,58,0.16);margin-top:28px;}
.article-body-section {padding:64px 0 88px;}
.article-content {max-width:860px;}
.article-content h2 {font-size:30px;line-height:1.22;color:#1f2d2b;margin:34px 0 12px;}
.article-content p {font-size:17px;line-height:1.85;color:#4f5f5c;margin:0 0 18px;}
.article-service-cta {background:linear-gradient(135deg,#315f57 0%,#5b9a8b 100%);border-radius:18px;padding:34px;margin-top:44px;color:#fff;}
.article-service-cta h2,.article-service-cta p {color:#fff;margin-top:0;}
.article-cta-actions {display:flex;gap:14px;flex-wrap:wrap;margin-top:22px;}
.article-primary-btn,.article-secondary-btn {display:inline-flex;align-items:center;justify-content:center;min-height:46px;border-radius:999px;padding:12px 20px;font-weight:800;text-decoration:none;}
.article-primary-btn {background:#fff;color:var(--green);}
.article-secondary-btn {border:1px solid rgba(255,255,255,0.38);color:#fff;}
.article-secondary-btn:hover {background:#fff;color:var(--green);}
.gallery-service-link p {color:#666;font-size:17px;margin-bottom:18px;}
@media (max-width:991px) {.blog-grid {grid-template-columns:repeat(2,minmax(0,1fr));} .blog-page h1,.article-page h1 {font-size:40px;}}
@media (max-width:767px) {.blog-hero {padding:56px 0 42px;} .blog-grid {grid-template-columns:1fr;} .blog-page h1,.article-page h1 {font-size:34px;} .article-content h2 {font-size:26px;} .article-cta-actions {flex-direction:column;} .article-primary-btn,.article-secondary-btn {width:100%;}}

.main-service {background:#f8f9fa;}
.main-service .service-eyebrow {color:var(--green);display:inline-flex;font-size:0.78rem;font-weight:800;letter-spacing:1px;margin-bottom:12px;text-transform:uppercase;}
.main-service .service-page-hero {background:linear-gradient(180deg,#d5e5ee 0%,#f8f9fa 92%);overflow:hidden;padding:84px 0 68px;position:relative;text-align:center;}
.main-service .service-page-hero::before {background:radial-gradient(circle at 14% 20%,rgba(91,154,139,0.18),transparent 32%),radial-gradient(circle at 86% 18%,rgba(52,152,219,0.14),transparent 28%);content:'';inset:0;position:absolute;z-index:0;}
@keyframes rotate {from {transform: rotate(0deg);} to {transform: rotate(360deg);}}
.main-service .service-hero-content {margin:0 auto;max-width:840px;padding:0 20px;position:relative;z-index:1;}
.main-service .service-hero-title {color:#2c2c2c;font-size:52px;font-weight:800;letter-spacing:0;line-height:1.08;margin-bottom:18px;}
.main-service .service-hero-subtitle {color:#5d6470;font-size:18px;line-height:1.7;margin:0 auto;max-width:720px;}
.main-service .service-cards-section {background:#f8f9fa;padding:74px 0 82px;}
.main-service .service-cards-grid {display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));margin:0 auto;max-width:1200px;padding:0 20px;}
.main-service .new-service-card {background:#fff;border:1px solid #edf1f2;border-radius:18px;box-shadow:0 8px 22px rgba(0,0,0,0.045);display:flex;flex-direction:column;overflow:hidden;padding:34px;position:relative;transition:var(--transition);}
.main-service .new-service-card:hover {border-color:#edf1f2;box-shadow:0 16px 32px rgba(0,0,0,0.08);transform:translateY(-5px);}
.main-service .new-service-card::after {background:var(--green);bottom:0;content:'';height:3px;left:0;position:absolute;transform:scaleX(0);transform-origin:left;transition:transform 0.3s ease;width:100%;}
.main-service .new-service-card:hover::after {transform: scaleX(1);}
.main-service .card-icon-wrapper {align-items:center;background:rgba(91,154,139,0.12);border-radius:18px;display:flex;height:72px;justify-content:center;margin-bottom:26px;transition:var(--transition);width:72px;}
.main-service .new-service-card:hover .card-icon-wrapper {background:var(--green);transform:translateY(-2px);}
.main-service .card-icon-wrapper i {color:var(--green);font-size:2rem;transition:var(--transition);}
.main-service .new-service-card:hover .card-icon-wrapper i {color:#fff;}
.main-service .card-title {color:#2c2c2c;font-size:1.45rem;font-weight:800;margin-bottom:14px;}
.main-service .card-desc {color:#65707a;flex-grow:1;line-height:1.65;margin-bottom:24px;}
.main-service .card-features {list-style: none;padding: 0;margin: 0;}
.main-service .card-feature-item {align-items:center;color:#4d5660;display:flex;font-size:0.95rem;gap:10px;margin-bottom:12px;}
.main-service .card-feature-item i {color: var(--green);font-size: 1.1rem;}
.main-service .new-service-card .primary-link {color:var(--green);display:inline-flex;font-weight:800;margin-top:8px;text-decoration:none;}
.main-service .stats-section-modern {background:#fff;color:#2c2c2c;padding:70px 0;position:relative;}
.main-service .stats-grid-modern {display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin:0 auto;max-width:1200px;padding:0 20px;text-align:center;}
.main-service .stat-item-modern {background:#f8f9fa;border:1px solid #edf1f2;border-radius:18px;padding:28px 18px;}
.main-service .stat-item-modern h3 {color:var(--green);font-size:3rem;font-weight:800;line-height:1;margin-bottom:10px;}
.main-service .stat-item-modern p {color:#65707a;font-size:1rem;font-weight:700;margin:0;}
.main-service .cta-section {background:#f8f9fa;padding:76px 0 90px;text-align:center;}
.main-service .cta-container {background:linear-gradient(135deg,#2c2c2c,#3f5d58);border-radius:28px;color:#fff;margin:0 auto;max-width:980px;overflow:hidden;padding:56px 32px;position:relative;}
.main-service .cta-container::after {background:radial-gradient(circle,rgba(255,255,255,0.12),transparent 55%);content:'';height:320px;position:absolute;right:-110px;top:-110px;width:320px;}
.main-service .cta-title {color:#fff;font-size:2.35rem;font-weight:800;margin-bottom:14px;position:relative;z-index:1;}
.main-service .cta-text {color:rgba(255,255,255,0.78);font-size:1.1rem;line-height:1.65;margin:0 auto 28px;max-width:620px;position:relative;z-index:1;}
.main-service .btn-cta-large {background:#fff;border-radius:50px;box-shadow:0 12px 24px rgba(0,0,0,0.12);color:var(--green);display:inline-flex;font-size:1.05rem;font-weight:800;min-height:48px;align-items:center;justify-content:center;padding:13px 28px;position:relative;text-decoration:none;transition:var(--transition);z-index:1;}
.main-service .btn-cta-large:hover {box-shadow:0 16px 30px rgba(0,0,0,0.18);color:var(--green);transform:translateY(-2px);}
.main-service .service-area-section {background:#f8f9fa;border-bottom:0;padding:64px 0;}
.main-service .service-area-container {align-items:center;display:flex;gap:48px;margin:0 auto;max-width:1200px;padding:0 20px;}
.main-service .service-area-content {flex: 1;}
.main-service .service-area-image {flex: 1;text-align: center;}
.main-service .service-area-image img {border:1px solid #edf1f2;border-radius:24px;box-shadow:0 18px 42px rgba(40,62,58,0.12);max-width:100%;transition:var(--transition);}
.main-service .service-area-image img:hover {transform:translateY(-3px);}
.main-service .service-area-title {color:#2c2c2c;font-size:3rem;font-weight:800;line-height:1.12;margin-bottom:18px;}
.main-service .service-area-text {color:#65707a;font-size:1.05rem;line-height:1.75;margin-bottom:26px;}
.main-service .service-area-details {display:flex;flex-wrap:wrap;gap:12px;margin-bottom:26px;}
.main-service .area-detail-item {align-items:center;background:#fff;border:1px solid rgba(91,154,139,0.24);border-radius:50px;color:#2c2c2c;display:flex;font-weight:800;gap:9px;padding:10px 16px;}
.main-service .area-detail-item i {color:var(--green);font-size:1.1rem;}


@media (max-width: 480px) {
  .main-service .stats-grid-modern {grid-template-columns: 1fr;}
}
@media (max-width: 520px) {
  .pricing-section .highlights { align-items: stretch; flex-direction: column; gap: 0.7rem; }
  .pricing-section .highlights li { font-size: 0.95rem; justify-content: flex-start; min-width: auto; padding: 0.7rem; }
  .pricing-section .container { padding: 0 0.5rem; }
}
@media (max-width: 576px) {
  .gallery-item { margin-bottom: 15px; }
}
@media (max-width: 1024px) {
  .navbar .book-button { display: none; }
}
@media (max-width: 768px) {
  .book-button { display: none; }
  .common-features-card{padding:20px}
  .common-features-grid{grid-template-columns:1fr}
  .common-features-section{padding:40px 15px}
  .comparison-title{font-size:24px}
  .desktop-nav { display: none; }
  .gallery-card { height: 200px; }
  .hero-section{padding:40px 20px 30px}
  .hero-title{font-size:32px;text-align:center !important}
  .hero-subtitle{font-size:16px;text-align:center !important;margin-bottom:25px}
  .hero-highlights{gap:15px;margin-bottom:25px}
  .highlight-icon{width:45px;height:45px}
  .highlight-icon i{font-size:20px}
  .highlight-icon::before{inset:-3px}
  .highlight-item span{font-size:12px;max-width:90px}
  .service-tabs{display:grid;grid-template-columns:1fr 1fr;gap:10px;max-width:none;width:100%}
  .service-tab{padding:10px;font-size:13px;border-radius:10px;flex-direction:column;gap:5px;width:100%;justify-content:center}
  .service-tab i{font-size:16px}
  .login-link { display: none; }
  .mobile-nav-icons { display: flex; }
  .navbar { background-color: var(--white);padding: 15px 20px; }
  .navbar .book-button { display: none; }
  .navbar .login-link { display: none; }
  .navbar .menu-container { display: none !important; }
  .navbar .nav-right { display: flex; align-items: center; gap: 15px; }
  .navbar-mobile-menu.show { display: flex; }
  .pricing-comparison-section{padding:40px 15px 80px}
  .pricing-table-wrapper{border-radius:0}
  .site-footer { text-align: center; }
  .site-footer .col-md-4 { margin-bottom: 30px; }
  .site-footer .d-flex.gap-3 { justify-content: center; }
  .site-footer .footer-attribution { margin-bottom: 10px; }
  .site-footer .text-md-end { text-align: center !important; }
  .site-footer .text-md-start, .site-footer .text-md-end { text-align: center !important; }
  .size-price{font-size:28px}
  .user-dropdown-toggle { padding: 8px 12px; }
  .user-dropdown-toggle span { display: none; }
  .main-service .service-hero-title {font-size: 2.5rem;}
  .main-service .service-cards-grid {grid-template-columns: 1fr;}
  .main-service .stats-grid-modern {grid-template-columns: repeat(2, 1fr);gap: 30px;}
  .pricing-grid {grid-template-columns: 1fr;}
}
@media (max-width: 1000px) {
  .css-login .text-wrap, .css-login .login-wrap { width: 100%; }
  .auth-right { display: none; }
  .auth-left { padding: 40px 20px; }
  .main-service .service-area-container {flex-direction: column-reverse;gap: 40px;text-align: center;}
  .main-service .service-area-details {justify-content: center;}
  .main-service .service-area-title {font-size: 2.5rem;}
}

/* Pricing Package Selection */
.package-selector-wrapper { background: var(--light-bg); padding: 30px; border-radius: 20px; margin-bottom: 40px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); }
.package-selector-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 20px; font-weight: 700; }
.package-selector { display: flex; justify-content: center; gap: 20px; }
.package-btn { padding: 15px 40px; border-radius: 12px; border: 2px solid var(--light-border); background: var(--white); font-weight: 700; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); color: #444; font-size: 1.15rem; position: relative; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.package-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); border-color: var(--active-color); }
.package-btn.active { background: var(--active-color); color: var(--white); border-color: var(--active-color); box-shadow: 0 10px 20px rgba(0,0,0,0.15); transform: translateY(-2px); }
.package-btn.active::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(255,255,255,0.2), transparent); pointer-events: none; }
.current-package-inline { background: var(--active-color); color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; margin-left: 15px; vertical-align: middle; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: inline-block; }
.section-header td { background: #fafafa !important; border-top: 2px solid var(--light-border); border-bottom: 2px solid var(--light-border); }

/* Nested Common Features (Clearer & Left-Aligned) */
.nested-common-features { margin-top: 25px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); text-align: left !important; width: 100%; }
.nested-common-features-title { font-size: 0.85rem; font-weight: 800; color: #555; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; display: flex; align-items: center; justify-content: flex-start; gap: 10px; }
.nested-common-features-title i { color: #f1c40f; font-size: 1rem; }
.compact-common-grid { display: flex; flex-wrap: wrap; justify-content: flex-start !important; gap: 10px; width: 100%; }
.compact-feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #333; font-weight: 700; background: #ffffff; padding: 8px 16px; border-radius: 8px; border: 1.5px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.04); transition: all 0.3s ease; }
.compact-feature-item i { color: #16a085; font-size: 1.1rem; }
.compact-feature-item:hover { background: #f9f9f9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: var(--active-color); }

/* Mobile Nested Features (Left-Aligned) */
.package-selector-wrapper-mobile .nested-common-features { margin-top: 20px; padding-top: 18px; border-top: 1px dashed rgba(0,0,0,0.15); }
.package-selector-wrapper-mobile .compact-common-grid { gap: 8px; justify-content: flex-start !important; }
.package-selector-wrapper-mobile .compact-feature-item { font-size: 0.8rem; padding: 6px 12px; border-radius: 6px; flex: 0 0 auto; }

/* Desktop Pricing Table Extras */
.pricing-comparison-table thead { background: var(--pricing-bg); color: white; }
.btn-book { color: var(--active-color); }

/* Mobile Pricing Enhancements */
.package-selector-wrapper-mobile { background: var(--light-bg); padding: 20px; border-radius: 15px; margin-bottom: 25px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); }
.package-selector-title-mobile { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 12px; font-weight: 700; text-align: center; }
.package-selector-mobile { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.package-btn-mobile { padding: 10px 18px; border-radius: 10px; border: 2px solid var(--light-border); background: var(--white); font-weight: 700; cursor: pointer; transition: all 0.3s; color: #555; font-size: 0.85rem; box-shadow: 0 2px 4px rgba(0,0,0,0.03); }
.package-btn-mobile.active { background: var(--active-color); color: var(--white); border-color: var(--active-color); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.card-header-mobile { background: var(--pricing-bg); position: relative; overflow: hidden; }
.card-header-mobile::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(rgba(255,255,255,0.15), transparent); pointer-events: none; }
.btn-book-mobile { background: var(--active-color); }
.current-package-badge-mobile { background: var(--active-color); color: var(--white); padding: 2px 10px; border-radius: 4px; font-size: 0.75rem; margin-left: 10px; font-weight: 700; text-transform: uppercase; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* Pricing drop-in visit */
.visit-pricing-container {padding: 60px 0;}
.visit-header {text-align: center;margin-bottom: 50px;}
.visit-header h2 {font-size: 2.5rem;font-weight: 700;color: #1f2937;margin-bottom: 1rem;}
.visit-header p {color: #6b7280;max-width: 600px;margin: 0 auto;}
.pricing-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));gap: 30px;max-width: 1000px;margin: 0 auto;}
.pricing-card {background: white;border-radius: 24px;padding: 40px;position: relative;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);transition: all 0.3s ease;display: flex;flex-direction: column;border: 1px solid #f3f4f6;}
.pricing-card:hover {transform: translateY(-2px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);}
.pricing-card.premium {border: 2px solid rgba(var(--premium-accent));background: linear-gradient(to bottom, #ffffff, rgba(var(--premium-accent),0.1));}
.card-badge {position: absolute;top: -15px;left: 50%;transform: translateX(-50%);background: rgba(var(--premium-accent));color: white;padding: 6px 20px;border-radius: 20px;font-size: 0.875rem;font-weight: 600;box-shadow: 0 4px 10px rgba(var(--premium-accent), 0.3);}
.card-title {font-size: 1.5rem;font-weight: 800;margin-bottom: 0.5rem;color: #111827;}
.card-price {margin-bottom: 2rem;}
.price-amount {font-size: 3rem;font-weight: 800;color: #111827;}
.price-unit {color: #6b7280;font-size: 1.1rem;}
.features-list {list-style: none;padding: 0;margin: 0 0 30px 0;flex-grow: 1;}
.feature-item {display: flex;align-items: center;gap: 12px;margin-bottom: 16px;color: #4b5563;font-size: 1.05rem;}
.feature-item i {color: #10b981;font-size: 1.25rem;}
.feature-item.premium-only {font-weight: 600;color: #111827;}
.feature-item.premium-only i {color: rgba(var(--premium-accent));}
.upgrade-section {background: rgba(var(--premium-accent), 0.1);border-radius: 16px;padding: 20px;margin-bottom: 30px;border: 1px dashed rgba(var(--premium-accent));}
.upgrade-title {font-size: 0.9rem;font-weight: 700;text-transform: uppercase;color: rgba(var(--premium-accent));margin-bottom: 12px;display: flex;align-items: center;gap: 8px;}
.btn-choose {display: block;text-align: center;background: #111827;color: white;padding: 16px;border-radius: 12px;font-weight: 600;text-decoration: none;transition: all 0.2s ease;}
.btn-choose:hover {background: #000;color: white;transform: scale(1.02);}
.btn-choose.premium-btn {background: rgba(var(--premium-accent));}
.btn-choose.premium-btn:hover {background: rgba(var(--premium-accent));}
.service-info-row {margin-bottom: 24px;}
.service-meta {display: inline-flex;align-items: center;gap: 6px;background: #f3f4f6;padding: 4px 12px;border-radius: 8px;font-size: 0.85rem;color: #4b5563;font-weight: 500;}
.service-desc {font-size: 0.95rem;color: #6b7280;margin-top: 12px;line-height: 1.5;}
.inner-addons-section {margin-top: auto;border-top: 1px solid #f3f4f6;padding-top: 24px;}
.inner-addons-title {font-size: 0.9rem;font-weight: 700;color: #111827;margin-bottom: 12px;display: flex;align-items: center;gap: 6px;}
.inner-addon-item {display: flex;justify-content: space-between;font-size: 0.9rem;margin-bottom: 8px;color: #4b5563;}
.inner-addon-name {display: flex;flex-direction: column;}
.inner-addon-desc {font-size: 0.8rem;color: #9ca3af;}
.premium-compare-text {font-size: 0.9rem;color: rgba(var(--premium-accent));background: rgba(var(--premium-accent), 0.05);padding: 10px 16px;border-radius: 12px;margin-bottom: 20px;font-weight: 600;border: 1px solid rgba(var(--premium-accent), 0.1);}
.addon-price-row {display: flex;align-items: center;gap: 8px;}
.old-price-strikethrough {text-decoration: line-through;color: #9ca3af;font-size: 0.85rem;font-weight: 400;}
.new-price-highlight {color: #ef4444;font-weight: 700;}
.premium-discount-inline {white-space: nowrap;}
.free-text-subtle {color: #10b981;font-weight: 800;font-size: 0.95rem;margin-left: 4px;}
.total-savings-box {margin-top: 15px;padding-top: 15px;border-top: 1px dashed rgba(var(--premium-accent), 0.3);display: flex;justify-content: space-between;align-items: center;}
.total-savings-label {font-size: 0.85rem;font-weight: 700;color: #111827;}
.total-savings-amount {font-size: 1.1rem;font-weight: 800;color: #10b981;}
.custom-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 30px 0; font-family: 'Inter', sans-serif; font-size: 15px; }
.custom-pagination a, .custom-pagination span { color: #4b5563; text-decoration: none; padding: 8px 12px; border-radius: 30px; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border: 1px solid transparent; }
.custom-pagination a:hover { background: #f3f4f6; color: #1f2937; transform: translateY(-1px); }
.custom-pagination .page-link.active { background: #6366f1; color: #fff !important; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4); font-weight: 600; }
.custom-pagination .prev, .custom-pagination .next { border-radius: 30px; padding: 8px 20px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; color: #6366f1; background: #f0f7ff; }
.custom-pagination .prev:hover, .custom-pagination .next:hover { background: #e0efff; color: #4f46e5; }
.custom-pagination i { font-size: 1.1rem; }
.custom-pagination .disabled { color: #d1d5db !important; cursor: not-allowed; pointer-events: none; background: #f9fafb; border-color: #f3f4f6; }
.custom-pagination .dots { cursor: default; min-width: 20px; padding: 0 5px; color: #9ca3af; }
#back-to-top { position: fixed; right: 15px; bottom: 85px; visibility: hidden; opacity: 0; width: 42px; height: 42px; background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%); color: white; border-radius: 50%; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1001; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: translateY(20px); pointer-events: none; }
#back-to-top.visible { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-5px) scale(1.05); background: linear-gradient(135deg, var(--green-hover) 0%, var(--green) 100%); box-shadow: 0 8px 20px rgba(0,0,0,0.25); color: white; }
#back-to-top i { font-size: 22px; line-height: 1; }
@media (min-width: 768px) { #back-to-top { right: 30px; bottom: 30px; width: 48px; height: 48px; } }
@media (max-width: 600px) { .custom-pagination { gap: 4px; font-size: 14px; } .custom-pagination .prev, .custom-pagination .next { padding: 8px 12px; min-width: auto; } .custom-pagination .prev span, .custom-pagination .next span { display: none; } .custom-pagination a, .custom-pagination span { min-width: 36px; height: 36px; padding: 6px; } }
@media (max-width: 450px) { .custom-pagination .page-link.dist-2 { display: none; } .custom-pagination .prev, .custom-pagination .next { padding: 8px 10px; } }
#wechat-browser-tip { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1090; display: grid; grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 10px 12px; max-width: 860px; margin: 0 auto; padding: 14px 16px; color: #431407; background: #fff7ed; border: 1px solid #fed7aa; border-left: 5px solid #f97316; border-radius: 12px; box-shadow: 0 14px 38px rgba(154,52,18,0.22); font-family: 'Inter', Arial, sans-serif; }
.wechat-browser-tip__icon { grid-column: 1; grid-row: 1 / span 2; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: #fff; background: #f97316; border-radius: 50%; font-size: 18px; font-weight: 900; }
.wechat-browser-tip__content { grid-column: 2; grid-row: 1 / span 2; min-width: 0; }
.wechat-browser-tip__title { display: block; margin-bottom: 6px; font-size: 15px; line-height: 1.25; font-weight: 800; }
.wechat-browser-tip__message { display: block; font-size: 13px; line-height: 1.4; color: #7c2d12; }
.wechat-browser-tip__help { display: none; margin-top: 8px; font-size: 12px; line-height: 1.35; color: #c2410c; font-weight: 700; }
.wechat-browser-tip--expanded .wechat-browser-tip__help { display: block; }
.wechat-browser-tip__action { grid-column: 2 / span 2; grid-row: 3; justify-self: end; border: 0; border-radius: 999px; padding: 10px 16px; background: #f97316; color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; box-shadow: 0 8px 18px rgba(249,115,22,0.32); }
.wechat-browser-tip__action:hover { background: #ea580c; color: #fff; }
.wechat-browser-tip__close { grid-column: 3; grid-row: 1; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: #ffedd5; color: #9a3412; font-size: 13px; font-weight: 800; }
.wechat-browser-tip__close:hover { background: #fed7aa; color: #7c2d12; }
@media (max-width: 640px) { #wechat-browser-tip { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 30px minmax(0, 1fr) 30px; gap: 8px 10px; padding: 12px; border-radius: 10px; } .wechat-browser-tip__icon { width: 30px; height: 30px; font-size: 16px; } .wechat-browser-tip__title { font-size: 14px; } .wechat-browser-tip__message { font-size: 12px; } .wechat-browser-tip__action { padding: 9px 12px; max-width: 100%; overflow: hidden; text-overflow: ellipsis; } .wechat-browser-tip__close { width: 30px; height: 30px; } }
@media (max-width: 380px) { .wechat-browser-tip__action { grid-column: 1 / span 3; width: 100%; } }
