/* Set Times New Roman globally */
body, input, textarea, button, select {
  font-family: 'Times New Roman', Times, serif;
}

.contact {
  padding: clamp(20px, 5vw, 80px) 0;
  background-color: #f8f9fa;
}

.contact .section-title {
  margin-bottom: clamp(20px, 5vw, 60px);
  margin-top: clamp(30px, 7vw, 70px);
}

.contact .section-title h2 {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: clamp(1px, 0.3vw, 2px);
  text-transform: uppercase;
  color: #aaaaaa;
}

.contact .section-title h2::after {
  content: "";
  width: clamp(40px, 15vw, 120px);
  height: 1px;
  display: inline-block;
  background: #f4b400;
  margin: 4px clamp(5px, 1vw, 10px);
}

.contact .section-title p {
  margin: 0;
  font-size: clamp(18px, 5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: #151515;
}

.contact .info-wrap {
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: clamp(10px, 3vw, 30px);
}

.contact .info-item {
  background: #fff;
  padding: clamp(10px, 2.5vw, 20px);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-bottom: clamp(12px, 2.5vw, 20px);
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: clamp(16px, 3.5vw, 28px);
  color: #f4b400;
  float: left;
  width: clamp(26px, 5.5vw, 44px);
  height: clamp(26px, 5.5vw, 44px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(244, 180, 0, 0.1);
}

.contact .info-item:hover i {
  background: #f4b400;
  color: #fff;
}

.contact .info-item h3 {
  font-size: clamp(14px, 2.5vw, 20px);
  color: #151515;
  font-weight: 600;
  margin: 0 0 5px clamp(35px, 7vw, 60px);
}

.contact .info-item p {
  font-size: clamp(11px, 2vw, 15px);
  color: #484848;
  margin: 0 0 0 clamp(35px, 7vw, 60px);
  line-height: 1.5;
}

.contact .map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.contact .map-container iframe {
  border-radius: 10px;
}

.contact .email-form {
  padding: clamp(12px, 3vw, 30px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .form-group {
  margin-bottom: clamp(15px, 2.5vw, 20px);
}

.form-control {
  height: clamp(40px, 6vw, 52px);
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 15px);
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  font-size: clamp(14px, 2vw, 16px);
}

textarea.form-control {
  height: auto;
  min-height: clamp(100px, 18vw, 150px);
  resize: vertical;
}

.form-control:hover, .form-control:focus {
  border-color: #f4b400;
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.2);
  background: #fff;
  outline: none;
}

.submit-button {
  background: #f4b400;
  color: #fff;
  border: none;
  padding: clamp(8px, 1.8vw, 14px) clamp(15px, 4vw, 35px);
  border-radius: 8px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: clamp(150px, 25vw, 200px);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.submit-button:hover {
  background: #e2a800;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(244, 180, 0, 0.2);
}

.alert {
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  font-weight: 500;
  transition: opacity 1s ease;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.section-divider {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.5), transparent);
  margin: clamp(15px, 4vw, 40px) 0;
}

.social-links,
.social-linkss {
  display: flex;
  margin-top: clamp(20px, 3.5vw, 30px);
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  justify-content: center;
}

.social-linkss {
  justify-content: center;
}

.social-links a,
.social-linkss a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 5vw, 40px);
  height: clamp(30px, 5vw, 40px);
  min-width: 44px;
  min-height: 44px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 50%;
  color: #f4b400;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover,
.social-linkss a:hover {
  background: #f4b400;
  color: #ffffff;
  transform: translateY(-5px);
}

.office-hours {
  background: #fff;
  border-radius: 10px;
  padding: clamp(10px, 2.5vw, 20px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-top: clamp(10px, 2.5vw, 20px);
}

.office-hours h3 {
  color: #151515;
  font-size: clamp(14px, 2.5vw, 20px);
  margin-bottom: clamp(10px, 2vw, 15px);
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.office-hours h3 i {
  color: #f4b400;
  margin-right: 10px;
  font-size: clamp(20px, 3vw, 24px);
}

.office-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-hours ul li {
  padding: clamp(6px, 1vw, 8px) 0;
  border-bottom: 1px dashed #e1e1e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: clamp(11px, 1.8vw, 15px);
}

.office-hours ul li:last-child {
  border-bottom: none;
}

.contact::after {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #f8f9fa;
  bottom: -30px;
  z-index: 1;
}

/* Hero Section Responsive */
.hero-section {
  position: relative;
  min-height: clamp(40vh, 50vh, 60vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.geometric-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.05) 75%);
  background-size: clamp(40px, 8vw, 60px) clamp(40px, 8vw, 60px);
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(60px); }
}

.corporate-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: clamp(60px, 12vw, 100px) clamp(60px, 12vw, 100px);
  opacity: 0.3;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  opacity: 0;
}

/* Show floating elements only on larger screens using container queries */
@container (min-width: 768px) {
  .floating-element {
    opacity: 1;
  }
}

.square-1 {
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  top: 10%;
  left: 15%;
  animation: float1 8s ease-in-out infinite;
  transform: rotate(45deg);
}

.square-2 {
  width: clamp(40px, 10vw, 80px);
  height: clamp(40px, 10vw, 80px);
  top: 70%;
  right: 20%;
  animation: float2 10s ease-in-out infinite reverse;
  border-radius: 50%;
}

.square-3 {
  width: clamp(80px, 18vw, 150px);
  height: clamp(80px, 18vw, 150px);
  top: 30%;
  right: 10%;
  animation: float3 12s ease-in-out infinite;
  transform: rotate(30deg);
  opacity: 0.6;
}

.square-4 {
  width: clamp(30px, 8vw, 60px);
  height: clamp(30px, 8vw, 60px);
  bottom: 20%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(30deg); opacity: 0.6; }
  50% { transform: translateY(-25px) rotate(45deg); opacity: 0.8; }
}

.gradient-orb {
  position: absolute;
  width: clamp(150px, 35vw, 300px);
  height: clamp(150px, 35vw, 300px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.orb-1 {
  top: -150px;
  left: -150px;
  animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
  bottom: -150px;
  right: -150px;
  animation: pulse 4s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.2); opacity: 0.25; }
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: min(800px, 90vw);
  padding: 0 clamp(15px, 3vw, 20px);
}

.content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: clamp(1px, 0.3vw, 2px);
}

.content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.8;
  margin-bottom: clamp(20px, 4vw, 30px);
  font-weight: 300;
  letter-spacing: clamp(0.5px, 0.2vw, 1px);
}

.professional-line {
  width: clamp(60px, 15vw, 100px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: clamp(15px, 2.5vw, 20px) auto;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
  100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 3.5vw, 30px);
  margin-top: clamp(25px, 5vw, 40px);
  flex-wrap: wrap;
}

.icon-wrapper {
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-wrapper:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.icon-wrapper i {
  font-size: clamp(20px, 3vw, 24px);
  color: #d4af37;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: parallaxMove 30s linear infinite;
}

@keyframes parallaxMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

#hero .icon-box {
  text-align: center;
  padding: clamp(10px, 2.5vw, 20px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: clamp(10px, 2.5vw, 20px);
  transition: all 0.3s ease;
}

#hero .icon-box:hover {
  transform: translateY(-5px);
}

#hero .icon-box i {
  font-size: clamp(28px, 6vw, 48px);
  color: #f4b400;
  margin-bottom: clamp(8px, 2vw, 15px);
}

#hero .icon-box h3 {
  font-size: clamp(13px, 2.2vw, 18px);
  font-weight: 600;
  margin: 0;
}

#hero .icon-box h3 a {
  color: #fff;
  text-decoration: none;
}

/* Chat Bubble Positioning - Right Bottom */
.chat-bubble {
    position: fixed;
    bottom: clamp(15px, 4vw, 70px);
    right: clamp(15px, 3vw, 20px);
    background-color: #f4b400;
    color: white;
    width: clamp(55px, 12vw, 80px);
    height: clamp(55px, 12vw, 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, 4vw, 24px);
    animation: bounceBubble 1.2s ease-in-out infinite;
}

.chat-bubble::before {
    content: 'Chat with us!';
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    transform-origin: center bottom;
    background-color: #333;
    color: white;
    padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 14px);
    border-radius: 6px;
    font-size: clamp(13px, 2.5vw, 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 - Positioned from Right Bottom */
.chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: flex-end;
    justify-content: flex-end;
    transition: opacity 0.3s ease;
    padding: clamp(0px, 2vw, 20px);
}

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

/* Chat Container - Fully Responsive */
.chat-container {
    width: min(95vw, 600px);
    height: min(85vh, 700px);
    max-width: 600px;
    background: #fff;
    border-radius: clamp(0px, 2vw, 10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.chat-close {
    background: none;
    border: none;
    font-size: clamp(18px, 4vw, 20px);
    cursor: pointer;
    padding: clamp(3px, 1vw, 5px);
    border-radius: 4px;
    transition: background 0.2s;
    line-height: 1;
    min-width: clamp(24px, 5vw, 30px);
    min-height: clamp(24px, 5vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: clamp(12px, 4vw, 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 */
.message {
    display: flex;
    margin-bottom: clamp(12px, 3vw, 15px);
    align-items: flex-start;
    max-width: 100%;
}

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

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

.message .avatar {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    min-width: clamp(35px, 8vw, 40px);
    min-height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 clamp(8px, 2vw, 10px);
    font-size: clamp(16px, 4vw, 20px);
    flex-shrink: 0;
}

.message .content {
    max-width: calc(100% - clamp(55px, 12vw, 70px));
    padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
    border-radius: clamp(14px, 3vw, 18px);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: clamp(13px, 2.8vw, 15px);
}

.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 {
    background: #f4b400;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .content {
    background: #f8f9fa;
    color: #333;
    border-bottom-left-radius: 4px;
    border: 1px solid #e9ecef;
}

/* Link Styling */
.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(4px, 1.5vw, 6px) clamp(8px, 2.5vw, 12px);
    border-radius: 6px;
    font-size: clamp(12px, 2.5vw, 14px);
    border: none;
    display: inline-block;
    margin-left: clamp(4px, 1.5vw, 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 */
.typing-indicator {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 15px);
    align-items: center;
}

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

.typing-avatar {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 4vw, 20px);
    margin-right: clamp(8px, 2vw, 10px);
}

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

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

.typing-dots span {
    width: clamp(6px, 1.5vw, 8px);
    height: clamp(6px, 1.5vw, 8px);
    background: #888;
    border-radius: 50%;
    margin: 0 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 */
.chat-input {
    padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 20px);
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 clamp(0px, 2vw, 12px) clamp(0px, 2vw, 12px);
    background: white;
    flex-shrink: 0;
}

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

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

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

.chat-send-btn {
    width: clamp(40px, 9vw, 45px);
    height: clamp(40px, 9vw, 45px);
    min-width: clamp(40px, 9vw, 45px);
    min-height: clamp(40px, 9vw, 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, 3vw, 16px);
    flex-shrink: 0;
}

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

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

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

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

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

.quick-option-btn {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: clamp(16px, 3vw, 20px);
    color: #495057;
    font-size: clamp(12px, 2.5vw, 13px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    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(12px, 2.8vw, 14px);
    color: #f4b400;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

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

/* Animation for quick options appearance */
.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 (Future-proof) */
@container (max-width: 500px) {
    .chat-container {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .chat-header,
    .chat-input {
        border-radius: 0;
    }
}

/* Prevent overflow issues */
* {
    box-sizing: border-box;
}

.chat-container * {
    max-width: 100%;
}

/* Container query for adaptive layouts */
@container (max-width: 500px) {
  .chat-container {
    border-radius: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
  }
  
  .chat-header {
    border-radius: 0;
  }
  
  .chat-input {
    border-radius: 0;
  }
  
  .message .content {
    max-width: 85%;
  }
}

/* Utility class for container queries */
.container-responsive {
  container-type: inline-size;
}

/* High DPI displays */
@supports (-webkit-min-device-pixel-ratio: 2) or (min-resolution: 192dpi) {
  .contact .info-item {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  
  .contact .email-form {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  }
}

/* Touch device optimizations - using hover: none instead of media query */
@media (hover: none) and (pointer: coarse) {
  .contact .info-item:hover {
    transform: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .contact .info-item:hover i {
    background: rgba(244, 180, 0, 0.1);
    color: #f4b400;
  }
  
  .submit-button:hover {
    transform: none;
    box-shadow: 0 5px 10px rgba(244, 180, 0, 0.15);
  }
  
  .social-links a:hover,
  .social-linkss a:hover {
    transform: none;
  }
  
  .icon-wrapper:hover {
    transform: none;
  }
  
  .chat-send-btn:hover:not(:disabled) {
    transform: none;
  }
}