/* 
 * COPYRIGHT NOTICE - ONPOINTBS INTELLECTUAL PROPERTY
 * Copyright (c) 2024 OnPointBS. All Rights Reserved.
 * Unique Identifier: OPBS-CSS-TAB-NYC-2024-7F3A9B2C-D4E5F6A7
 * Code Fingerprint: 0x7F3A9B2CD4E5F6A7B8C9D0E1F2A3B4C5
 * Development Date: 2024-01-05
 * Developer: OnPointBS
 * This CSS code is proprietary and confidential. Unauthorized copying is strictly prohibited.
 * Legal Action: OnPointBS will pursue legal action to the fullest extent in New York State.
 */

/* Custom CSS for Thai Aroma Bodywork NYC */
/* ONPOINTBS IP MARKER: CSS-START-OPBS-7F3A9B2C */

:root {
  /* ONPOINTBS IP MARKER: CSS-VARS-OPBS-7F3A9B2C */
  /* Primary Colors - Matching Logo & Original Site */
  --primary-color: #9F7E4B;
  --secondary-color: #1E1810;
  --accent-color: #D6B555;
  --warm-brown: #9F7E4B;
  --dark-brown: #3F2E00;
  --cream: #F9F9F6;
  --light-cream: #F4F2EA;
  --text-dark: #1E1810;
  --text-light: #666666;
  --bg-light: #F9F9F6;
  --white: #FFFFFF;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography */
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
}

.font-accent {
  font-family: var(--font-accent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
}

.section-title .text-primary {
  color: var(--primary-color) !important;
  font-weight: 700;
}

/* Navigation */
.navbar {
  background: rgba(30, 24, 16, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  background: rgba(30, 24, 16, 1) !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white) !important;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-location {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9em;
}

.brand-accent {
  color: var(--accent-color) !important;
  text-shadow: 0 2px 4px rgba(214, 181, 85, 0.3);
}

.brand-tagline {
  font-family: var(--font-accent);
  font-size: 1.5rem !important;
  color: rgba(255, 255, 255, 0.95);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Mega Menu Styles */
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-top: 1rem;
  background: var(--white);
  min-width: 800px;
  max-width: 1000px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mega-menu-container {
  max-width: 100%;
  padding: 0;
}

.mega-menu .dropdown-item-text {
  padding: 0 !important;
}

.mega-menu-item {
  display: block;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  background: var(--bg-light);
}

.mega-menu-item:hover {
  background: var(--white);
  border-color: var(--warm-brown);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  text-decoration: none;
}

.mega-menu-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 126, 75, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: var(--warm-brown);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--warm-brown);
  color: var(--white);
  transform: scale(1.1);
}

.mega-menu-item h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.mega-menu-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.navbar-nav .dropdown-toggle:hover {
  color: var(--warm-brown) !important;
}

/* Responsive Mega Menu */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin-top: 0.5rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: none;
    border-radius: 0;
    background: rgba(30, 24, 16, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .navbar-nav .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }
  
  .navbar-nav .dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  
  .navbar-nav .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }
  
  .navbar-nav .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  
  .mega-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
  }
  
  .mega-menu-container {
    padding: 1rem 0.5rem;
    width: 100%;
  }
  
  .mega-menu-container .row {
    margin: 0;
  }
  
  .mega-menu-item {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 0.5rem;
    padding: 1rem 0.75rem !important;
    border-radius: var(--radius-md);
  }
  
  .mega-menu-item:active,
  .mega-menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
  }
  
  .mega-menu-item h6 {
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  
  .mega-menu-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
  }
  
  .mega-menu-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
  }
  
  .mega-menu-item:active .mega-menu-icon,
  .mega-menu-item:hover .mega-menu-icon {
    background: var(--accent-color);
    color: var(--white);
  }
  
  .mega-menu-container .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
}

@media (max-width: 768px) {
  .mega-menu-container .row {
    margin: 0;
  }
  
  .mega-menu-container .col-lg-3,
  .mega-menu-container .col-md-6 {
    padding: 0.5rem;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .mega-menu-item {
    padding: 1rem 0.75rem !important;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .mega-menu-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin: 0 !important;
  }
  
  .mega-menu-item h6 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  
  .mega-menu-item p {
    font-size: 0.8rem;
    margin: 0;
  }
  
  .mega-menu-container .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.btn-book {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #3F2E00 0%, #1E1810 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-background-video {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 24, 16, 0.75) 0%, rgba(30, 24, 16, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-logo {
  display: inline-block;
}

.hero-brand-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
  animation: logoFloat 3s ease-in-out infinite;
}

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

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-section .text-primary {
  color: var(--accent-color) !important;
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-icon i {
  transition: transform 0.3s ease;
}

.feature-icon:hover i {
  transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-down {
  color: var(--warm-brown);
  font-size: 2rem;
  animation: bounce 2s infinite;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: inline-block;
  position: relative;
}

.scroll-down:hover {
  opacity: 1;
  color: var(--accent-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Section Padding */
.section-padding {
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
  background-color: var(--white);
  margin-top: 0;
}

.section-padding.bg-light {
  background-color: var(--bg-light);
}

/* Ensure sections don't overlap hero */
section:not(.hero-section) {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}

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

/* Brand Pattern */
.brand-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, var(--primary-color) 10px, var(--primary-color) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--accent-color) 10px, var(--accent-color) 20px);
  pointer-events: none;
  z-index: 0;
}

.section-brand-icon {
  display: inline-block;
}

.section-logo {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  opacity: 0.9;
}

/* About Section */
#about .text-primary,
#about strong.text-primary,
#about .text-primary i {
  color: var(--warm-brown) !important;
}

#about .feature-icon-box i {
  color: var(--warm-brown) !important;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.brand-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.watermark-logo {
  height: 150px;
  width: auto;
  filter: brightness(0) invert(1);
}

.image-placeholder {
  background: var(--bg-light);
  padding: 80px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Feature Boxes */
.feature-box {
  padding: 1.5rem;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 126, 75, 0.15);
  border-radius: 50%;
}

.feature-icon-box i {
  font-size: 1.5rem;
}

/* Benefit Cards */
.benefit-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-top: 4px solid var(--warm-brown);
}

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

.benefit-icon {
  color: var(--warm-brown);
  margin-bottom: 1.5rem;
}

.benefit-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm-brown), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--warm-brown);
}

.service-icon {
  color: var(--warm-brown);
  text-align: center;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

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

.service-image img.service-img[src*="logo.png"] {
  object-fit: contain;
  padding: 20px;
  background: var(--bg-light);
}

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

.service-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.service-features li i {
  color: var(--warm-brown) !important;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

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

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

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

.testimonial-rating {
  color: #FFC107;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: var(--text-dark);
  font-weight: 600;
}

/* Contact Section */
.contact-info h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  color: var(--warm-brown);
}

.contact-item h5 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.form-control,
.form-select {
  border: 1px solid #dee2e6;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--warm-brown);
  box-shadow: 0 0 0 0.2rem rgba(159, 126, 75, 0.25);
}

.btn-primary {
  background: var(--warm-brown);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--warm-brown);
  color: var(--warm-brown);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--warm-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--secondary-color) !important;
  color: var(--white);
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
  font-weight: 300;
}

.footer * {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm-brown), var(--accent-color), var(--warm-brown));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer h5 {
  color: var(--white) !important;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer p,
.footer li,
.footer span {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 300;
}

.footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color) !important;
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer .text-white {
  color: var(--white) !important;
}

.footer i {
  color: rgba(255, 255, 255, 0.9) !important;
}

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

.social-links a:hover {
  background: var(--warm-brown);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .hero-content {
    padding: 100px 0 60px;
  }
  
  /* Center Book Now button on mobile */
  .navbar .d-flex.align-items-center {
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar .btn-book {
    width: 100%;
    max-width: 250px;
  }
  
  /* Mobile Navigation Scrolling */
  .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
  }
  
  .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }
  
  .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  
  .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }
  
  .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--warm-brown);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--warm-brown);
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--dark-brown);
  text-decoration: underline !important;
}

.breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 500;
}

/* Smooth Scroll */
html {
  scroll-padding-top: 80px;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loaded {
  opacity: 1;
}

/* ONPOINTBS IP MARKER: CSS-END-OPBS-7F3A9B2C */
/* 
 * END OF CSS FILE - ONPOINTBS INTELLECTUAL PROPERTY
 * Copyright (c) 2024 OnPointBS. All Rights Reserved.
 * Unique Identifier: OPBS-CSS-TAB-NYC-2024-7F3A9B2C-D4E5F6A7
 * Code Fingerprint: 0x7F3A9B2CD4E5F6A7B8C9D0E1F2A3B4C5
 * Unauthorized copying of this CSS code will result in legal action in New York State.
 */

