/* Base Styles with Fluid Typography */
:root {
  --fluid-min-width: 320;
  --fluid-max-width: 1600;
  --fluid-screen: 100vw;
  --fluid-bp: calc((var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) / (var(--fluid-max-width) - var(--fluid-min-width)));
}

body {
  font-family: 'Times New Roman', Times, serif;
  background-color: #f8f9fa;
  color: #444;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  font-family: 'Times New Roman', Times, serif !important;
  box-sizing: border-box;
}

/* Container with Fluid Width */
.page-container {
  margin-block-start: clamp(40px, 8vw, 80px);
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: clamp(10px, 3vw, 80px);
}

/* Breadcrumb with Flexible Layout */
.breadcrumb-section {
  background-color: #ffffff;
  padding-block: clamp(15px, 4vw, 30px);
  border-bottom: 1px solid #e9ecef;
  margin-block-start: clamp(20px, 12vw, 100px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 1vw, 10px);
  width: 100%;
}

.breadcrumb-item {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
  padding-inline-start: clamp(0.5rem, 1vw, 1rem);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #ccc;
  font-size: clamp(14px, 1.5vw, 16px);
  padding-inline-end: clamp(0.5rem, 1vw, 1rem);
  font-weight: bold;
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  word-break: break-word;
}

.breadcrumb-item a:hover {
  color: #ff9d1f;
}

.breadcrumb-item.active {
  color: #ff9d1f;
  font-weight: 600;
}

.breadcrumb-home-icon {
  margin-inline-end: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
}

/* Service Hero with Fluid Spacing */
.service-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
  padding-block: clamp(15px, 5vw, 40px) clamp(10px, 4vw, 30px);
  position: relative;
  overflow: hidden;
  margin-block-start: 0;
  width: 100%;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset-block-start: -50px;
  inset-inline-end: -50px;
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  border-radius: 50%;
  background-color: rgba(255, 157, 31, 0.05);
  z-index: 0;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset-block-end: -30px;
  inset-inline-start: -30px;
  width: clamp(80px, 15vw, 150px);
  height: clamp(80px, 15vw, 150px);
  border-radius: 50%;
  background-color: rgba(255, 157, 31, 0.03);
  z-index: 0;
}

/* Section Title with Fluid Typography */
.section-title {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: clamp(24px, 4vw + 1rem, 42px);
  font-weight: 700;
  margin-block-end: clamp(20px, 4vw, 30px);
  color: #333;
  position: relative;
  display: inline-block;
  padding-block-end: clamp(25px, 5vw, 40px);
  text-align: center;
  line-height: 1.2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  inset-block-end: 5px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 8vw, 60px);
  height: clamp(3px, 0.5vw, 4px);
  background-color: #ff9d1f;
  border-radius: 2px;
}

.section-title .subtitle {
  color: #888;
  font-size: clamp(14px, 1.5vw + 0.5rem, 18px);
  font-weight: 400;
  margin-block: 5px 15px;
  line-height: 1.6;
  max-width: min(600px, 90%);
  margin-inline: auto;
}

/* Service Container with Flexible Layout */
.service-container {
  margin-block: clamp(15px, 3vw, 20px) clamp(40px, 8vw, 60px);
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 100%;
}

.service-image-wrapper {
  width: 100%;
  position: relative;
  height: clamp(180px, 40vw, 400px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

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

.service-image-wrapper:hover .service-image {
  transform: scale(1.05);
}

/* Service Content with Fluid Padding */
.service-content {
  padding: clamp(20px, 6vw, 60px) clamp(12px, 6vw, 80px);
}

.service-details h3 {
  font-size: clamp(20px, 3vw + 0.5rem, 28px);
  font-weight: 600;
  margin-block-end: clamp(15px, 3vw, 25px);
  color: #333;
  line-height: 1.3;
}

.service-details p {
  font-size: clamp(14px, 1.2vw + 0.3rem, 16px);
  line-height: 1.8;
  color: #666;
  margin-block-end: clamp(20px, 4vw, 30px);
}

/* Service Highlights with Auto Grid */
.service-highlights {
  margin-block: clamp(30px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 20vw, 180px), 1fr));
  gap: clamp(15px, 3vw, 30px);
  width: 100%;
}

.highlight-box {
  text-align: center;
  padding: clamp(15px, 3vw, 25px) clamp(10px, 2vw, 15px);
  background-color: #f8f9fa;
  border-radius: clamp(8px, 1.5vw, 12px);
  transition: all 0.3s ease;
  min-height: clamp(90px, 18vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.highlight-box i {
  font-size: clamp(24px, 4vw, 32px);
  color: #ff9d1f;
  margin-block-end: clamp(10px, 2vw, 15px);
}

.highlight-box h4 {
  font-size: clamp(14px, 2vw + 0.2rem, 18px);
  font-weight: 600;
  color: #444;
  line-height: 1.3;
  margin: 0;
}

/* Contact Section with Fluid Styling */
.contact-section {
  margin-block-start: clamp(20px, 4vw, 30px);
  background: linear-gradient(135deg, #fffaf2 0%, #fff6e6 100%);
  padding: clamp(15px, 4vw, 30px);
  border-radius: clamp(8px, 1.5vw, 12px);
  border-inline-start: clamp(3px, 0.6vw, 5px) solid #ff9d1f;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset-block-start: -30px;
  inset-inline-end: -30px;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  background-color: rgba(255, 157, 31, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.contact-section h4 {
  font-size: clamp(18px, 2.5vw + 0.3rem, 22px);
  font-weight: 600;
  margin-block-end: clamp(15px, 3vw, 20px);
  color: #333;
  position: relative;
  z-index: 1;
}

.phone-text {
  font-size: clamp(16px, 2vw + 0.3rem, 20px);
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  gap: clamp(5px, 1.5vw, 10px);
}

.phone-text i {
  color: #ff9d1f;
  font-size: clamp(18px, 3vw, 24px);
  margin-inline-end: clamp(8px, 1.5vw, 12px);
}

/* CTA Button with Fluid Sizing */
.cta-button {
  display: inline-block;
  margin-block-start: clamp(15px, 3vw, 25px);
  background-color: #ff9d1f;
  color: white;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 34px);
  font-size: clamp(14px, 1.5vw + 0.2rem, 16px);
  font-weight: 500;
  border-radius: clamp(6px, 1vw, 8px);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 157, 31, 0.3);
  text-align: center;
  min-width: clamp(100px, 15vw, 120px);
}

.cta-button:hover {
  background-color: #f08c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 157, 31, 0.4);
  color: white;
}

/* Related Services with Flexible Grid */
.related-services {
  margin-block: clamp(40px, 10vw, 80px);
  width: 100%;
}

.related-services h3 {
  font-size: clamp(22px, 3vw + 0.5rem, 28px);
  font-weight: 600;
  margin-block-end: clamp(30px, 5vw, 40px);
  text-align: center;
  color: #333;
}

.service-card {
  background: white;
  border-radius: clamp(8px, 1.5vw, 12px);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-img {
  height: clamp(120px, 25vw, 200px);
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.service-card-body {
  padding: clamp(12px, 3vw, 25px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: clamp(16px, 2.5vw + 0.2rem, 20px);
  font-weight: 600;
  margin-block-end: clamp(12px, 2vw, 15px);
  color: #333;
  line-height: 1.3;
}

.service-card-text {
  font-size: clamp(13px, 1.2vw + 0.1rem, 14px);
  color: #666;
  margin-block-end: clamp(15px, 3vw, 20px);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-link {
  color: #ff9d1f;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-block-start: auto;
  font-size: clamp(13px, 1.5vw + 0.1rem, 15px);
}

.service-card-link i {
  margin-inline-start: 8px;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: #f08c00;
}

.service-card-link:hover i {
  transform: translateX(5px);
}

/* Gallery with Fluid Sizing */
.service-gallery-title {
  margin-block: clamp(40px, 6vw, 50px) clamp(15px, 3vw, 20px);
  font-size: clamp(18px, 3vw + 0.2rem, 24px);
  font-weight: 600;
  color: #333;
  position: relative;
  padding-inline-start: clamp(12px, 2vw, 15px);
}

.service-gallery-title::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  height: 100%;
  width: clamp(3px, 0.5vw, 4px);
  background-color: #ff9d1f;
  border-radius: 2px;
}

.service-images-swiper {
  width: 100%;
  height: clamp(100px, 28vw, 220px);
  margin-block: clamp(20px, 4vw, 30px);
  border-radius: clamp(8px, 1.5vw, 12px);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-images-swiper .swiper-slide {
  text-align: center;
  background: #f8f9fa;
  border-radius: clamp(6px, 1vw, 8px);
  overflow: hidden;
  transition: all 0.3s ease;
  height: calc(100% - 10px);
  margin-block-start: 5px;
}

.service-images-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-images-swiper .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-images-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.service-images-swiper .swiper-pagination {
  inset-block-end: 0;
}

.service-images-swiper .swiper-pagination-bullet {
  width: clamp(6px, 1vw, 8px);
  height: clamp(6px, 1vw, 8px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}

.service-images-swiper .swiper-pagination-bullet-active {
  background-color: #ff9d1f;
  opacity: 1;
}

.service-images-swiper .swiper-button-next,
.service-images-swiper .swiper-button-prev {
  color: #ff9d1f;
  background: rgba(255, 255, 255, 0.7);
  width: clamp(25px, 4vw, 35px);
  height: clamp(25px, 4vw, 35px);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-images-swiper .swiper-button-next:after,
.service-images-swiper .swiper-button-prev:after {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: bold;
}

.service-images-swiper .swiper-button-next:hover,
.service-images-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.no-gallery-message {
  background-color: #f8f9fa;
  border-radius: clamp(6px, 1vw, 8px);
  padding: clamp(15px, 3vw, 20px);
  text-align: center;
  color: #888;
  font-style: italic;
  margin-block: clamp(20px, 4vw, 30px);
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: clamp(14px, 2vw, 18px);
}

/* Chat Bubble with Fluid Sizing */
.chat-bubble {
  position: fixed;
  inset-block-end: clamp(15px, 8vw, 70px);
  inset-inline-end: clamp(15px, 3vw, 20px);
  background-color: #f4b400;
  color: white;
  width: clamp(55px, 10vw, 80px);
  height: clamp(55px, 10vw, 80px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
  font-size: clamp(20px, 3vw, 24px);
  animation: bounceBubble 1.2s ease-in-out infinite;
}

.chat-bubble::before {
  content: 'Chat with us!';
  position: absolute;
  inset-block-end: clamp(60px, 12vw, 70px);
  inset-inline-end: 0;
  transform-origin: center bottom;
  background-color: #333;
  color: white;
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 14px);
  border-radius: clamp(4px, 1vw, 6px);
  font-size: clamp(13px, 2vw, 16px);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1001;
  animation: fadeInOutTooltip 4s ease-in-out 1s infinite;
}

.chat-bubble:hover::before {
  animation: none;
  opacity: 1;
  transform: scale(1) translateY(-10px);
}

.chat-bubble.typing::before {
  content: 'Typing...';
  animation: none;
  opacity: 1;
  transform: scale(1) translateY(-10px);
}

.chat-bubble:hover {
  transform: scale(1.1);
  background-color: #f4b400;
  animation: none;
}

.chat-bubble.typing {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes bounceBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInOutTooltip {
  0% { opacity: 0; transform: scale(0.5); }
  20% { opacity: 1; transform: scale(1) translateY(-10px); }
  80% { opacity: 1; transform: scale(1) translateY(-10px); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* Chat Overlay with Flexible Positioning */
.chat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: flex-end;
  justify-content: flex-end;
  transition: opacity 0.3s ease;
}

.chat-overlay.show {
  display: flex;
  opacity: 1;
}

/* Chat Container with Fluid Dimensions */
.chat-container {
  width: min(100%, 600px);
  height: min(80vh, 800px);
  background: #fff;
  border-radius: clamp(8px, 1.5vw, 10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: clamp(10px, 3vw, 20px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-overlay.show .chat-container {
  transform: translateY(0);
}

/* Chat Header with Fluid Padding */
.chat-header {
  background: #f4b400;
  color: white;
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
  border-radius: clamp(10px, 1.5vw, 12px) clamp(10px, 1.5vw, 12px) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h5 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
}

.chat-header small {
  opacity: 0.9;
  font-size: clamp(11px, 1.5vw, 13px);
}

.chat-close {
  background: none;
  border: none;
  font-size: clamp(18px, 3vw, 20px);
  cursor: pointer;
  padding: clamp(3px, 0.5vw, 5px);
  border-radius: clamp(3px, 0.5vw, 4px);
  transition: background 0.2s;
}

.chat-close:hover {
  background: white;
}

/* Chat Messages with Fluid Padding */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: clamp(15px, 3vw, 20px);
}

.chat-messages::-webkit-scrollbar {
  width: clamp(4px, 1vw, 6px);
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Message Styling with Fluid Spacing */
.message {
  display: flex;
  margin-block-end: clamp(12px, 2vw, 15px);
  align-items: flex-start;
}

.message.bot {
  flex-direction: row;
}

.message.user {
  flex-direction: row-reverse;
}

.message .avatar {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: clamp(8px, 1.5vw, 10px);
  font-size: clamp(18px, 3vw, 20px);
}

.message .content {
  max-width: 80%;
  padding: clamp(10px, 2vw, 12px) clamp(14px, 2.5vw, 16px);
  border-radius: clamp(16px, 2.5vw, 18px);
  line-height: 1.4;
  word-wrap: break-word;
  font-size: clamp(13px, 1.5vw, 14px);
}

.message.bot .content {
  background: #f1f0f0;
}

.message.user .content {
  background: #f4b400;
  color: #fff;
}

.message.user::before {
  display: none !important;
}

.message.user .user-label {
  display: none !important;
}

.message.user .avatar {
  color: white;
}

.message.bot .avatar {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
}

.message.user .content {
  border-end-end-radius: clamp(3px, 0.5vw, 4px);
}

.message.bot .content {
  border-end-start-radius: clamp(3px, 0.5vw, 4px);
  border: 1px solid #e9ecef;
}

/* Link Styling in Chat */
.chat-messages .content a {
  color: #000000 !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #000000;
  transition: all 0.3s ease;
}

.chat-messages .content a:hover {
  color: #333333 !important;
  border-bottom-color: #333333;
  text-decoration: none;
}

.chat-messages .content .property-link,
.chat-messages .content .contact-link {
  background: #000000 !important;
  color: white !important;
  padding: clamp(5px, 1vw, 6px) clamp(10px, 2vw, 12px);
  border-radius: clamp(5px, 1vw, 6px);
  font-size: clamp(12px, 1.5vw, 14px);
  border: none;
  display: inline-block;
  margin-inline-start: clamp(6px, 1.2vw, 8px);
  font-weight: 500;
  border-bottom: none;
}

.chat-messages .content .property-link:hover,
.chat-messages .content .contact-link:hover {
  background: #333333 !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Typing Indicator with Fluid Sizing */
.typing-indicator {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: clamp(8px, 2vw, 10px) clamp(12px, 2.5vw, 15px);
  display: flex;
  align-items: center;
}

.typing-indicator.show {
  display: flex;
  opacity: 1;
}

.typing-avatar {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 20px);
  margin-inline-end: clamp(8px, 1.5vw, 10px);
}

.typing-content {
  display: flex;
  align-items: center;
}

.typing-dots {
  display: flex;
  align-items: center;
}

.typing-dots span {
  width: clamp(6px, 1.2vw, 8px);
  height: clamp(6px, 1.2vw, 8px);
  background: #888;
  border-radius: 50%;
  margin-inline: clamp(2px, 0.5vw, 3px);
  animation: typing 1s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Chat Input with Fluid Spacing */
.chat-input {
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
  border-block-start: 1px solid #e9ecef;
  border-radius: 0 0 clamp(10px, 1.5vw, 12px) clamp(10px, 1.5vw, 12px);
  background: white;
}

.chat-input-group {
  display: flex;
  gap: clamp(8px, 1.5vw, 10px);
  align-items: center;
}

.chat-input input {
  flex: 1;
  padding: clamp(10px, 2vw, 12px) clamp(14px, 2.5vw, 16px);
  border: 1px solid #ddd;
  border-radius: clamp(20px, 3vw, 25px);
  outline: none;
  font-size: clamp(13px, 1.5vw, 14px);
  transition: border-color 0.3s;
}

.chat-input input:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.chat-send-btn {
  width: clamp(40px, 7vw, 45px);
  height: clamp(40px, 7vw, 45px);
  border: none;
  background: #f4b400;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: clamp(14px, 2vw, 16px);
}

.chat-send-btn:hover:not(:disabled) {
  background: #f4b400;
  transform: scale(1.05);
}

.chat-send-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Quick Options with Fluid Layout */
.quick-options {
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-block: 1px solid #dee2e6;
  margin-block-end: clamp(12px, 2vw, 15px);
  border-radius: clamp(6px, 1vw, 8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quick-options-title {
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 600;
  color: #6c757d;
  margin-block-end: clamp(10px, 2vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-options-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 8px);
}

.quick-option-btn {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 8px);
  padding: clamp(10px, 2vw, 12px) clamp(14px, 2.5vw, 16px);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e9ecef;
  border-radius: clamp(16px, 2.5vw, 20px);
  color: #495057;
  font-size: clamp(12px, 1.5vw, 13px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: start;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.quick-option-btn:hover {
  background: #f4b400;
  color: white;
  border-color: #f4b400;
  transform: translateY(-1px);
}

.quick-option-btn:active {
  transform: translateY(0);
}

.quick-option-btn i {
  font-size: clamp(13px, 1.8vw, 14px);
  color: #f4b400;
  transition: color 0.3s ease;
}

.quick-option-btn:hover i {
  color: white;
}

/* Quick Options Animation */
.quick-options {
  animation: slideInUp 0.4s ease-out;
}

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

/* Container Query Support (Progressive Enhancement) */
@supports (container-type: inline-size) {
  .service-container {
    container-type: inline-size;
    container-name: service;
  }
  
  @container service (min-width: 768px) {
    .service-content {
      padding: 6cqi 8cqi;
    }
  }
  
  @container service (max-width: 767px) {
    .service-content {
      padding: 3cqi 2cqi;
    }
  }
}

/* Aspect Ratio Support for Images */
.service-image-wrapper {
  aspect-ratio: 16 / 9;
  height: auto;
}

.service-card-img {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Flexible Grid for Related Services */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(15px, 3vw, 30px);
}

/* Print Styles (Only necessary media query) */
@media print {
  .service-hero::before,
  .service-hero::after,
  .contact-section::before {
    display: none;
  }
  
  .service-images-swiper .swiper-button-next,
  .service-images-swiper .swiper-button-prev {
    display: none;
  }
  
  .cta-button {
    background: #333 !important;
    color: white !important;
  }
  
  .chat-bubble,
  .chat-overlay {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .highlight-box,
  .contact-section {
    border: 2px solid currentColor;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #e0e0e0;
  }
  
  .service-container,
  .service-card,
  .chat-container {
    background: #2a2a2a;
  }
  
  .breadcrumb-section {
    background-color: #2a2a2a;
    border-bottom-color: #444;
  }
  
  .service-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  }
}