/*:root {*/
/*    --primary-color: #5CB85C;*/
/*    --primary-dark: #4CAF50;*/
/*    --primary-light: #66CC66;*/
/*    --secondary-color: #2C7A7B;*/
/*    --secondary-dark: #2F8585;*/
/*    --accent-color: #f59e0b;*/
/*    --accent-dark: #d97706;*/
/*    --success-color: #5CB85C;*/
/*    --warning-color: #f59e0b;*/
/*    --error-color: #ef4444;*/
/*    --info-color: #2C7A7B;*/
/*    --text-dark: #111827;*/
/*    --text-medium: #374151;*/
/*    --text-light: #6b7280;*/
/*    --text-muted: #9ca3af;*/
/*    --bg-primary: #ffffff;*/
/*    --bg-secondary: #f9fafb;*/
/*    --bg-tertiary: #f3f4f6;*/
/*    --bg-accent: #f0fdf4;*/
/*    --border-light: #e5e7eb;*/
/*    --border-medium: #d1d5db;*/
/*    --border-dark: #9ca3af;*/
/*    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);*/
/*    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);*/
/*    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);*/
/*    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);*/
/*}*/

:root {
    /* MAIN BLUE THEME */
    --primary-color: #1E90FF;        /* Dodger Blue */
    --primary-dark: #0F6CD1;         /* Deep Blue */
    --primary-light: #63B3FF;        /* Light Blue */

    /* Secondary theme (blue-green / teal blend) */
    --secondary-color: #2C7A7B;      
    --secondary-dark: #2F8585;

    /* Accent colors (unchanged unless you want Blue accents too) */
    --accent-color: #f59e0b;
    --accent-dark: #d97706;

    /* Success color switching from green → blue */
    --success-color: #1E90FF;

    /* Keep warnings/errors the same */
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #2C7A7B;

    /* Text colors (unchanged) */
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;

    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-accent: #f0fdf4; /* if you want blue accent instead, tell me */

    /* Borders */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;

    /* Shadow tokens */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}



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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}
/* ===============================
   PREMIUM 3D GLASS NAVIGATION BAR
==================================*/

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease-in-out;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateZ(20px);
}

/* Brand Logo */
/*.navbar-brand img {*/
/*    width: auto;*/
/*    height: 100px;*/
/*    transition: transform 0.4s ease;*/
/*    vertical-align: middle;*/
/*    max-width: 100%;*/
/*}*/

/* Brand Logo (Centered) */
.navbar-brand img {
    height: 150px;          /* Increase size here */
    width: auto;           
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

/* Shrink on scroll (premium effect – optional) */
.navbar.scrolled .navbar-brand img {
    height: 110px;
}


.navbar-brand:hover img {
    transform: perspective(500px) rotateX(10deg) rotateY(-10deg) scale(1.05);
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #1e293b !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 14px;
    transition: 0.3s ease;
    position: relative;

    /* 3D Button Look */
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link:hover {
    background: rgba(59,130,246,0.12);
    color: #1e40af !important;
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 6px 14px rgba(30,64,175,0.2);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg,#3b82f6,#1e40af);
    transition: 0.3s;
}

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

/* Language Selector - Floating Soft Pill */
.language-selector {
    background: rgba(255,255,255,0.3);
    padding: 6px 12px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.language-selector:hover {
    transform: translateY(-3px);
}

/* Buttons (3D Enhanced) */
.btn-call, .btn-primary {
    border-radius: 14px;
    padding: 0.75rem 1.6rem;
    font-weight: 700;
    transition: 0.3s ease;
    transform-style: preserve-3d;
}

.btn-call:hover, .btn-primary:hover {
    transform: translateY(-4px) translateZ(20px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }

    .nav-link {
        margin-bottom: 10px;
    }

    .d-flex.align-items-center {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .language-selector {
        width: 120px;
    }
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #bae6fd 50%, #7dd3fc 75%, #38bdf8 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(92, 184, 92, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(44, 122, 123, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
        linear-gradient(45deg, transparent 20%, rgba(255, 255, 255, 0.15) 50%, transparent 80%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5CB85C 0%, #2C7A7B 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #475569;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
}

.hero-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 320px;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

.hero-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5CB85C, #2C7A7B, #1e40af);
    border-radius: 20px 20px 0 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-text {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    line-height: 1.4;
}

.hero-search-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.hero-search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5CB85C, #2C7A7B, #1e40af);
    border-radius: 25px 25px 0 0;
}

.hero-search-form::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 184, 92, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

/* New single search input wrapper */
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
}

.hospital-search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b;
}

.hospital-search-input:focus {
    border-color: #5CB85C;
    box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.15);
    outline: none;
    background: white;
}

.search-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    white-space: nowrap;
    background: linear-gradient(135deg, #5CB85C 0%, #2C7A7B 50%, #1e40af 100%);
    color: white;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #2C7A7B 0%, #1e40af 50%, #5CB85C 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.4);
}

.search-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.search-field .form-select,
.search-field .form-control {
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1e293b;
}

.search-field .form-select:focus,
.search-field .form-control:focus {
    border-color: #5CB85C;
    box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.15);
    outline: none;
    background: white;
    transform: translateY(-2px);
}

.search-button {
    display: flex;
    align-items: end;
}

.btn-search {
    background: linear-gradient(135deg, #5CB85C 0%, #2C7A7B 50%, #1e40af 100%);
    border: none;
    border-radius: 15px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-search:hover::before {
    left: 100%;
}

.btn-search:hover {
    background: linear-gradient(135deg, #2C7A7B 0%, #1e40af 50%, #5CB85C 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.4);
}

/* Search Container */
.search-container {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(92, 184, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(44, 122, 123, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.search-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transform: translateY(-20px);
}

.search-input {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.1);
    background: var(--bg-primary);
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

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

.service-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.08) 0%, rgba(44, 122, 123, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

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

/* Partner Cards */
.partner-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: 0 0.75rem;
    min-width: 280px;
    flex: 0 0 calc(33.333% - 1.5rem);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.doctor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.partner-specialty {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.partner-education {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
}

.partner-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.partner-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
    font-size: 0.8rem;
    justify-content: center;
}

.views-icon {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 75%, rgba(92, 184, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(44, 122, 123, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    background: var(--bg-primary);
    border: 1px solid var(--border-light) !important;
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.accordion-button {
    background: var(--bg-primary) !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    font-weight: 600;
    color: var(--text-dark) !important;
    box-shadow: none !important;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: var(--bg-primary) !important;
}

.accordion-button::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem !important;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-primary);
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.contact-item i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--bg-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .search-inputs {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .search-button {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .hero-search-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .search-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-field .form-select,
    .search-field .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-search {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-search-form {
        padding: 1.5rem 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.25rem;
        padding: 0.5rem 0.75rem !important;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Appointment Booking Page Styles */
.appointment-booking-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.appointment-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(92, 184, 92, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 122, 123, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

/* Booking Header */
.booking-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-icon i {
    font-size: 2.5rem;
    color: white;
}

.booking-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-subtitle {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Booking Content */
.booking-content {
    position: relative;
    z-index: 2;
}

/* Doctor Info Card */
.doctor-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.doctor-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.doctor-avatar-section {
    flex-shrink: 0;
}

.doctor-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.avatar-badge i {
    color: white;
    font-size: 1.2rem;
}

.doctor-details {
    flex: 1;
}

.doctor-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.doctor-title {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.doctor-specialty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-accent);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.doctor-specialty i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.doctor-specialty span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Error Alert */
.error-alert {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.error-icon {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.error-icon i {
    color: white;
    font-size: 1.5rem;
}

.error-content h4 {
    color: #dc2626;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.error-content p {
    color: #991b1b;
    margin: 0;
    font-weight: 500;
}

/* Appointment Form Card */
.appointment-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.appointment-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-subtitle {
    color: var(--text-medium);
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

/* Form Styles */
.appointment-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.1);
    transform: translateY(-2px);
}

.form-input.error {
    border-color: var(--error-color);
    background: #fef2f2;
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input:focus + .input-icon {
    color: var(--primary-color);
}

.form-input.error + .input-icon {
    color: var(--error-color);
}

.textarea-wrapper {
    position: relative;
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.1);
    transform: translateY(-2px);
}

.form-textarea.error {
    border-color: var(--error-color);
    background: #fef2f2;
}

.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.textarea-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-textarea:focus + .textarea-icon {
    color: var(--primary-color);
}

.form-textarea.error + .textarea-icon {
    color: var(--error-color);
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--error-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 3px solid var(--error-color);
}

.error-message i {
    font-size: 0.875rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-secondary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--bg-tertiary);
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* Avatar Placeholder Styles */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
}

.clinic-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Service Image Placeholder */
.service-image .avatar-placeholder {
    border-radius: 12px;
    font-size: 3rem;
}

/* Doctor Avatar Large Placeholder */
.doctor-avatar-large .avatar-placeholder {
    font-size: 4rem;
}

/* Partner Card Avatar Placeholder */
.partner-card .avatar-placeholder {
    font-size: 2rem;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.chat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.4);
}

.chat-icon i {
    color: white;
    font-size: 1.5rem;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    min-width: 24px;
}

.chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.chat-panel.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar i {
    color: white;
    font-size: 1.2rem;
}

.chat-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.chat-clear,
.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-clear:hover,
.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.chat-clear:hover {
    background: rgba(239, 68, 68, 0.3);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: slideInUp 0.3s ease;
}

.bot-message {
    align-self: flex-start;
}

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

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.message-avatar i {
    font-size: 0.9rem;
}

.message-content {
    max-width: 80%;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.user-message .message-content {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    display: block;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input-area {
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid var(--border-light);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.chat-input-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Character counter */
.chat-char-counter {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.chat-char-counter.warning {
    color: #f59e0b;
}

.chat-char-counter.danger {
    color: #ef4444;
}

/* Input focus effects */
.chat-input-area:focus-within {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.chat-input-area:focus-within::before {
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.chat-input {
    flex: 0 0 80%;
    width: 80%;
    max-width: 80%;
    padding: 1.5rem 1.5rem; /* Increased padding for more height */
    border: 2px solid #e2e8f0;
    border-radius: 30px 0 0 30px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: var(--text-dark);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 0;
    height: 50px; /* Increased height from 50px to 70px */
    box-sizing: border-box;
    border-right: none;
}

.chat-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    border-right: none;
}

.chat-input:focus::placeholder {
    color: var(--text-medium);
    transform: translateX(2px);
}

.chat-input:hover:not(:focus) {
    border-color: #94a3b8;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-right: none;
}

/* Input wrapper with icon */
.chat-input-wrapper {
    position: relative;
    display: flex;
    gap: 0;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
}

/* Removed input icon */

.chat-send-btn {
    flex: 0 0 20%;
    width: 20%;
    height: 50px; /* Increased height to match input */
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border: 2px solid #10b981;
    border-radius: 0 30px 30px 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.chat-send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.chat-send-btn:hover::before {
    left: 100%;
}

.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    border-color: #059669;
}

.chat-send-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-send-btn:disabled:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-send-btn i {
    transition: transform 0.3s ease;
}

.chat-send-btn:hover i {
    transform: translateX(1px);
}

.chat-quick-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-action {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 184, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-action:hover::before {
    left: 100%;
}

.quick-action:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(92, 184, 92, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.quick-action:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 15px rgba(92, 184, 92, 0.2),
        0 1px 4px rgba(0, 0, 0, 0.1);
}

.quick-action i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.quick-action:hover i {
    transform: scale(1.1);
}

/* Individual quick action button styles */
.quick-action:nth-child(1) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    color: #92400e;
}

.quick-action:nth-child(1):hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.quick-action:nth-child(2) {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    color: #1e40af;
}

.quick-action:nth-child(2):hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.quick-action:nth-child(3) {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border-color: #ef4444;
    color: #dc2626;
}

.quick-action:nth-child(3):hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

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

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

/* Responsive Chat */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-icon {
        width: 55px;
        height: 55px;
    }
    
    .chat-panel {
        width: calc(100vw - 30px);
        height: 450px;
        right: -15px;
        bottom: 75px;
    }
    
    .chat-messages {
        padding: 0.75rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chat-input-wrapper {
        gap: 0;
    }
    
    .chat-input {
        flex: 0 0 80%;
        width: 80%;
        padding: 0.75rem 1rem;
        border-radius: 25px 0 0 25px;
    }
    
    .chat-send-btn {
        flex: 0 0 20%;
        width: 20%;
        height: 70px; /* Increased height to match input */
        border-radius: 0 25px 25px 0;
    }
    
    .chat-quick-actions {
        flex-direction: column;
    }
    
    .quick-action {
        justify-content: center;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .chat-panel {
        width: calc(100vw - 20px);
        height: 400px;
        right: -10px;
    }
    
    .chat-header {
        padding: 0.75rem 1rem;
    }
    
    .chat-input-area {
        padding: 0.75rem;
    }
    
    .chat-input-wrapper {
        gap: 0;
    }
    
    .chat-input {
        flex: 0 0 80%;
        width: 80%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 25px 0 0 25px;
    }
    
    .chat-send-btn {
        flex: 0 0 20%;
        width: 20%;
        height: 70px; /* Increased height to match input */
        font-size: 0.9rem;
        border-radius: 0 25px 25px 0;
    }
    
    .quick-action {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    
    .chat-char-counter {
        font-size: 0.65rem;
        bottom: 0.25rem;
        right: 0.75rem;
    }
}

/* Additional input enhancements */
.chat-input:focus {
    animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading state for send button */
.chat-send-btn.loading {
    animation: sendLoading 1s ease-in-out infinite;
}

@keyframes sendLoading {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Enhanced quick actions on mobile */
@media (max-width: 768px) {
    .chat-quick-actions {
        gap: 0.25rem;
    }
    
    .quick-action {
        flex: 1;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }
    
    .quick-action i {
        display: none;
    }
}
