:root {
    --primary-color: #f4b400;
    --secondary-color: #f4b400;
    --dark-color: #212529;
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--light-gray);
    color: #444;
    line-height: 1.7;
}

/* Apply Times New Roman to all text elements */
*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
label {
    font-family: 'Times New Roman', Times, serif;
}

/* Header Spacing */
.page-container {
    padding-top: 120px;
}

/* Page Title Section */
.about-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #323a40 100%);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Welcome Text Section Styling */
.welcome-text-container {
    position: relative;
    padding-bottom: 15px;
}

.welcome-text-preview,
.welcome-text-full {
    margin-bottom: 10px;
}

.welcome-text-btn {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    padding: 5px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
}

.welcome-text-btn:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.about-hero h1:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 30px auto 0;
}

/* Section Styling */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.section-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-wrapper {
    margin-bottom: 80px;
}

/* Team Card Styling */
.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.profile-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-bottom: 4px solid var(--primary-color);
    display: block;
}

.team-content {
    padding: 30px;
}

/* Mission & Vision Styling */
.mission-vision-row {
    display: flex;
    flex-wrap: wrap;
}

.mission-vision-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.mission-vision-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.mission-vision-card h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.mission-vision-card h3 i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 24px;
}

.mission-vision-card p {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 250px;
}

/* Achievement Cards */
.achievements-row {
    display: flex;
    flex-wrap: wrap;
}

.achievements-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.achievement-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-bottom: 4px solid var(--primary-color);
    display: block;
}

.achievement-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.achievement-content h5 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Video Section */
.video-container {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.video-embed {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Team Member Profile Cards */
.team-member-profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.team-member-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-member-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.team-member-name {
    color: #4a4a4a;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-member-title {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member-bio {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.bio-preview {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bio-full {
    display: none;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .page-container {
        padding-top: 80px;
    }

    .about-hero {
        padding: 40px 15px;
        margin-bottom: 40px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero h1:after {
        width: 50px;
    }

    .about-hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title:after {
        width: 40px;
    }

    .section-wrapper {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .profile-photo {
        height: 250px;
    }

    .team-content {
        padding: 20px;
    }

    .mission-vision-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .mission-vision-card h3 {
        font-size: 20px;
        padding-left: 35px;
    }

    .mission-vision-card h3 i {
        font-size: 20px;
    }

    .achievement-photo {
        height: 200px;
    }

    .achievement-content {
        padding: 20px;
    }

    .achievement-content h5 {
        font-size: 18px;
    }

    .video-container {
        padding: 20px;
    }

    .video-embed {
        height: 250px;
    }

    .team-member-profile-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .team-member-image-container {
        width: 150px;
        height: 150px;
    }

    .team-member-name {
        font-size: 20px;
    }

    .team-member-title {
        font-size: 14px;
    }

    .team-member-bio {
        font-size: 14px;
    }

    .welcome-text-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .page-container {
        padding-top: 90px;
    }

    .about-hero {
        padding: 45px 20px;
        margin-bottom: 45px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero h1:after {
        width: 55px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title:after {
        width: 45px;
    }

    .section-wrapper {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .profile-photo {
        height: 300px;
    }

    .team-content {
        padding: 25px;
    }

    .mission-vision-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .achievement-photo {
        height: 220px;
    }

    .achievement-content {
        padding: 22px;
    }

    .video-container {
        padding: 25px;
    }

    .video-embed {
        height: 300px;
    }

    .team-member-image-container {
        width: 170px;
        height: 170px;
    }

    .team-member-name {
        font-size: 22px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .page-container {
        padding-top: 100px;
    }

    .about-hero {
        padding: 50px 0;
        margin-bottom: 50px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero h1:after {
        width: 60px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-wrapper {
        margin-bottom: 70px;
    }

    .profile-photo {
        height: 400px;
    }

    .achievement-photo {
        height: 250px;
    }

    .video-embed {
        height: 400px;
    }

    .team-member-image-container {
        width: 180px;
        height: 180px;
    }
}

/* Large devices (desktops, 992px and up) - Original styles maintained */
@media (min-width: 992px) {
    /* Original styles are maintained for desktop */
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .about-hero h1 {
        font-size: 45px;
    }

    .about-hero h1:after {
        width: 75px;
    }

    .about-hero p {
        font-size: 19px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-title:after {
        width: 55px;
    }

    .profile-photo {
        height: 520px;
    }

    .achievement-photo {
        height: 320px;
    }

    .video-embed {
        height: 520px;
    }

    .team-member-image-container {
        width: 220px;
        height: 220px;
    }

    .team-member-name {
        font-size: 26px;
    }

    .team-member-title {
        font-size: 17px;
    }

    .team-member-bio {
        font-size: 17px;
    }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
    .about-hero h1 {
        font-size: 48px;
    }

    .about-hero h1:after {
        width: 80px;
    }

    .about-hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title:after {
        width: 60px;
    }

    .section-wrapper {
        margin-bottom: 90px;
    }

    .profile-photo {
        height: 550px;
    }

    .achievement-photo {
        height: 350px;
    }

    .video-embed {
        height: 550px;
    }

    .team-content {
        padding: 35px;
    }

    .mission-vision-card {
        padding: 35px;
    }

    .achievement-content {
        padding: 30px;
    }

    .video-container {
        padding: 35px;
    }

    .team-member-profile-card {
        padding: 25px;
    }

    .team-member-image-container {
        width: 240px;
        height: 240px;
    }

    .team-member-name {
        font-size: 28px;
    }

    .team-member-title {
        font-size: 18px;
    }

    .team-member-bio {
        font-size: 18px;
    }
}

/* Landscape orientation for mobile devices */
@media screen and (orientation: landscape) and (max-height: 600px) {
    .page-container {
        padding-top: 60px;
    }

    .about-hero {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .section-wrapper {
        margin-bottom: 40px;
    }

    .video-embed {
        height: 250px;
    }
}

/* Container and responsive utilities */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Ensure no horizontal scrolling */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Additional responsive utilities */
.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

@media (max-width: 575.98px) {
    .d-xs-none {
        display: none !important;
    }

    .d-xs-block {
        display: block !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-block {
        display: block !important;
    }
}

/* 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%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .quick-options {
        padding: 12px 15px;
        margin-bottom: 12px;
    }

    .quick-option-btn {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 16px;
    }

    .quick-options-buttons {
        gap: 6px;
    }
}