/* Cursor.com Design - Complete Redesign */

/* CSS Variables - Cursor.com Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #007AFF;
    --primary-hover: #0056CC;
    --primary-color-dark: #0056CC;
    --primary-light: #E3F2FD;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F4;
    --bg-dark: #1A1A1A;
    --bg-dark-secondary: #2D2D2D;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --text-tertiary: #9AA0A6;
    --text-light: #FFFFFF;
    --text-muted: #80868B;
    
    /* Border Colors */
    --border-light: #E8EAED;
    --border-medium: #DADCE0;
    --border-dark: #9AA0A6;
    
    /* Shadow System */
    --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);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* Dark Mode Variables */
.dark-mode {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2D2D2D;
    --bg-tertiary: #3C3C3C;
    --text-primary: #FFFFFF;
    --text-secondary: #E8EAED;
    --text-tertiary: #9AA0A6;
    --border-light: #3C3C3C;
    --border-medium: #5F6368;
    --border-dark: #80868B;
}

/* Dark Mode Specific Styles */
.dark-mode .header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-light);
}

.dark-mode .nav-menu a {
    color: var(--text-secondary);
}

.dark-mode .nav-menu a:hover {
    color: var(--text-primary);
}

.dark-mode .language-selector select {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .language-selector select:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .theme-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .feature-card,
.dark-mode .university-card,
.dark-mode .faculty-card,
.dark-mode .level-card,
.dark-mode .document-card,
.dark-mode .faq-item,
.dark-mode .testimonial-card,
.dark-mode .link-card {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .feature-card:hover,
.dark-mode .university-card:hover,
.dark-mode .faculty-card:hover,
.dark-mode .level-card:hover,
.dark-mode .document-card:hover,
.dark-mode .faq-item:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .link-card:hover {
    border-color: var(--border-medium);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
}

.dark-mode .btn-secondary {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.dark-mode .footer a {
    color: var(--text-secondary);
}

.dark-mode .footer a:hover {
    color: var(--text-primary);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header and Navigation - Cursor.com Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand a {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-brand a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector - Cursor.com Style */
.language-selector {
    margin-left: 2rem;
}

.language-selector select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 120px;
}

.language-selector select:hover {
    border-color: var(--border-medium);
    background: var(--bg-tertiary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Theme Toggle Button - Cursor.com Style */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 9999;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: scale(1.05);
}

/* Hero Section - Cursor.com Style */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Cursor.com Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles - Cursor.com Style */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid - Cursor.com Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Backgrounds */
.services-section {
    background: var(--bg-secondary);
}

.faculties-section {
    background: var(--bg-secondary);
}

.documents-section {
    background: var(--bg-secondary);
}

.faq-section {
    background: var(--bg-secondary);
}

.testimonials {
    background: var(--bg-secondary);
}

/* Contact Banner */
.contact-banner {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    opacity: 0.9;
    font-size: var(--font-size-sm);
}

/* Admission Notice */
.admission-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
}

.notice-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.notice-card h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.admission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
}

/* Quick Links */
.quick-links {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.quick-links .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.link-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    display: block;
}

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

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.university-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.university-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.university-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 3px solid var(--border-light);
}

.university-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.university-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.university-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.university-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Faculties Grid */
.faculties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.faculty-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faculty-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.faculty-card ul {
    list-style: none;
    padding: 0;
}

.faculty-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.faculty-card li:last-child {
    border-bottom: none;
}

/* Education Levels */
.education-levels {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.level-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.level-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.document-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.document-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.document-card li:last-child {
    border-bottom: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.faq-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.cta-buttons .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card .role {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
}

/* Card Component - Cursor.com Style */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

/* Forms - Cursor.com Style */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-medium);
}

/* Messages - Cursor.com Style */
.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message.success {
    background: #E8F5E8;
    color: #1E7E34;
    border: 1px solid #C3E6C3;
}

.message.error {
    background: #F8E8E8;
    color: #DC3545;
    border: 1px solid #F5C6C6;
}

.message.info {
    background: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

/* Footer - Cursor.com Style */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-keywords p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    color: var(--text-tertiary);
}

/* Flag Icons - Cursor.com Style */
.flag-icon {
    display: inline-block;
    width: 48px;
    height: 32px;
    border-radius: 4px;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    background-size: cover;
    background-position: center;
}

.feature-card .icon .flag-icon {
    display: block;
    width: 64px;
    height: 42px;
    margin: 0 auto 1.5rem;
}

.flag-tr {
    background: linear-gradient(to bottom, #E30A17 50%, #ffffff 50%);
    position: relative;
}

.flag-tr::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-en {
    background: linear-gradient(45deg, #012169 0%, #012169 25%, #ffffff 25%, #ffffff 50%, #C8102E 50%, #C8102E 75%, #ffffff 75%);
}

.flag-ua {
    background: linear-gradient(to bottom, #005BBB 50%, #FFD700 50%);
}

.flag-az {
    background: linear-gradient(to bottom, #3F9C35 50%, #ED2939 50%);
    position: relative;
}

.flag-az::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-ru {
    background: linear-gradient(to bottom, #ffffff 33%, #0039A6 33% 66%, #D52B1E 66%);
}

.flag-de {
    background: linear-gradient(to bottom, #000000 33%, #DD0000 33% 66%, #FFCE00 66%);
}

.flag-us {
    background: linear-gradient(45deg, #B22234 0%, #B22234 25%, #ffffff 25%, #ffffff 50%, #3C3B6E 50%, #3C3B6E 75%, #ffffff 75%);
    position: relative;
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #DC143C 50%);
}

.flag-uz {
    background: linear-gradient(to bottom, #1EB53A 50%, #0099B5 50%);
    position: relative;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem var(--container-padding);
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .faculties-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-2xl);
    }
    
    .admission-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-xl);
    }
    
    .university-card,
    .faculty-card,
    .document-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .university-image {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --text-secondary: #000000;
    }
    
    .dark-mode {
        --border-light: #ffffff;
        --border-medium: #ffffff;
        --text-secondary: #ffffff;
    }
} 

/* About Section */
.about-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.target-audience h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
    padding: 0;
}

.target-audience li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.document-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.document-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
}

.demo-steps {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.demo-video {
    text-align: center;
    margin-top: 4rem;
}

.demo-video h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-video p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Live Support Section */
.live-support-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.social-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Share Buttons */
.footer-links-bottom {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

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

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

.share-buttons {
    margin: 2rem 0;
    text-align: center;
}

.share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.share-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.share-link.facebook:hover {
    background: #1877f2;
}

.share-link.twitter:hover {
    background: #1da1f2;
}

.share-link.linkedin:hover {
    background: #0077b5;
}

.share-link.whatsapp:hover {
    background: #25d366;
}

.share-link.telegram:hover {
    background: #0088cc;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-links {
        flex-direction: column;
        align-items: center;
    }
    
    .share-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .advantage-card,
    .document-card,
    .support-card,
    .social-card {
        padding: 2rem;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
    
    .demo-video h3 {
        font-size: 1.5rem;
    }
} 

/* Content Pages (Privacy Policy, Terms of Service, Contact) */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.content-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.social-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

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

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .content-text {
        padding: 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-text {
        padding: 1.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Page Styles */
.testimonials-stats {
    background: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.featured-testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.author-university,
.author-program {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.success-stories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-title {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.story-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.video-testimonials {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.video-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.university-testimonials {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.university-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.university-content {
    display: none;
}

.university-content.active {
    display: block;
}

.leave-review {
    padding: 4rem 0;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-form {
    margin-top: 3rem;
    text-align: left;
}

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

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .university-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
} 

/* Yukarı Çıkma Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.scroll-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid currentColor;
    margin-top: -2px;
}

/* Mobil için yukarı çıkma butonu */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
/* Cursor.com Design - Complete Redesign */

/* CSS Variables - Cursor.com Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #007AFF;
    --primary-hover: #0056CC;
    --primary-color-dark: #0056CC;
    --primary-light: #E3F2FD;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F4;
    --bg-dark: #1A1A1A;
    --bg-dark-secondary: #2D2D2D;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --text-tertiary: #9AA0A6;
    --text-light: #FFFFFF;
    --text-muted: #80868B;
    
    /* Border Colors */
    --border-light: #E8EAED;
    --border-medium: #DADCE0;
    --border-dark: #9AA0A6;
    
    /* Shadow System */
    --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);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* Dark Mode Variables */
.dark-mode {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2D2D2D;
    --bg-tertiary: #3C3C3C;
    --text-primary: #FFFFFF;
    --text-secondary: #E8EAED;
    --text-tertiary: #9AA0A6;
    --border-light: #3C3C3C;
    --border-medium: #5F6368;
    --border-dark: #80868B;
}

/* Dark Mode Specific Styles */
.dark-mode .header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-light);
}

.dark-mode .nav-menu a {
    color: var(--text-secondary);
}

.dark-mode .nav-menu a:hover {
    color: var(--text-primary);
}

.dark-mode .language-selector select {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .language-selector select:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .theme-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .feature-card,
.dark-mode .university-card,
.dark-mode .faculty-card,
.dark-mode .level-card,
.dark-mode .document-card,
.dark-mode .faq-item,
.dark-mode .testimonial-card,
.dark-mode .link-card {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .feature-card:hover,
.dark-mode .university-card:hover,
.dark-mode .faculty-card:hover,
.dark-mode .level-card:hover,
.dark-mode .document-card:hover,
.dark-mode .faq-item:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .link-card:hover {
    border-color: var(--border-medium);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
}

.dark-mode .btn-secondary {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.dark-mode .footer a {
    color: var(--text-secondary);
}

.dark-mode .footer a:hover {
    color: var(--text-primary);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header and Navigation - Cursor.com Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand a {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-brand a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector - Cursor.com Style */
.language-selector {
    margin-left: 2rem;
}

.language-selector select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 120px;
}

.language-selector select:hover {
    border-color: var(--border-medium);
    background: var(--bg-tertiary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Theme Toggle Button - Cursor.com Style */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 9999;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: scale(1.05);
}

/* Hero Section - Cursor.com Style */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Cursor.com Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles - Cursor.com Style */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid - Cursor.com Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Backgrounds */
.services-section {
    background: var(--bg-secondary);
}

.faculties-section {
    background: var(--bg-secondary);
}

.documents-section {
    background: var(--bg-secondary);
}

.faq-section {
    background: var(--bg-secondary);
}

.testimonials {
    background: var(--bg-secondary);
}

/* Contact Banner */
.contact-banner {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    opacity: 0.9;
    font-size: var(--font-size-sm);
}

/* Admission Notice */
.admission-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
}

.notice-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.notice-card h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.admission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
}

/* Quick Links */
.quick-links {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.quick-links .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.link-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    display: block;
}

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

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.university-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.university-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.university-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 3px solid var(--border-light);
}

.university-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.university-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.university-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.university-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Faculties Grid */
.faculties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.faculty-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faculty-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.faculty-card ul {
    list-style: none;
    padding: 0;
}

.faculty-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.faculty-card li:last-child {
    border-bottom: none;
}

/* Education Levels */
.education-levels {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.level-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.level-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.document-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.document-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.document-card li:last-child {
    border-bottom: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.faq-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.cta-buttons .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card .role {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
}

/* Card Component - Cursor.com Style */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

/* Forms - Cursor.com Style */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-medium);
}

/* Messages - Cursor.com Style */
.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message.success {
    background: #E8F5E8;
    color: #1E7E34;
    border: 1px solid #C3E6C3;
}

.message.error {
    background: #F8E8E8;
    color: #DC3545;
    border: 1px solid #F5C6C6;
}

.message.info {
    background: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

/* Footer - Cursor.com Style */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-keywords p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    color: var(--text-tertiary);
}

/* Flag Icons - Cursor.com Style */
.flag-icon {
    display: inline-block;
    width: 48px;
    height: 32px;
    border-radius: 4px;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    background-size: cover;
    background-position: center;
}

.feature-card .icon .flag-icon {
    display: block;
    width: 64px;
    height: 42px;
    margin: 0 auto 1.5rem;
}

.flag-tr {
    background: linear-gradient(to bottom, #E30A17 50%, #ffffff 50%);
    position: relative;
}

.flag-tr::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-en {
    background: linear-gradient(45deg, #012169 0%, #012169 25%, #ffffff 25%, #ffffff 50%, #C8102E 50%, #C8102E 75%, #ffffff 75%);
}

.flag-ua {
    background: linear-gradient(to bottom, #005BBB 50%, #FFD700 50%);
}

.flag-az {
    background: linear-gradient(to bottom, #3F9C35 50%, #ED2939 50%);
    position: relative;
}

.flag-az::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-ru {
    background: linear-gradient(to bottom, #ffffff 33%, #0039A6 33% 66%, #D52B1E 66%);
}

.flag-de {
    background: linear-gradient(to bottom, #000000 33%, #DD0000 33% 66%, #FFCE00 66%);
}

.flag-us {
    background: linear-gradient(45deg, #B22234 0%, #B22234 25%, #ffffff 25%, #ffffff 50%, #3C3B6E 50%, #3C3B6E 75%, #ffffff 75%);
    position: relative;
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #DC143C 50%);
}

.flag-uz {
    background: linear-gradient(to bottom, #1EB53A 50%, #0099B5 50%);
    position: relative;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem var(--container-padding);
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .faculties-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-2xl);
    }
    
    .admission-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-xl);
    }
    
    .university-card,
    .faculty-card,
    .document-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .university-image {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --text-secondary: #000000;
    }
    
    .dark-mode {
        --border-light: #ffffff;
        --border-medium: #ffffff;
        --text-secondary: #ffffff;
    }
} 

/* About Section */
.about-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.target-audience h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
    padding: 0;
}

.target-audience li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.document-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.document-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
}

.demo-steps {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.demo-video {
    text-align: center;
    margin-top: 4rem;
}

.demo-video h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-video p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Live Support Section */
.live-support-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.social-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Share Buttons */
.footer-links-bottom {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

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

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

.share-buttons {
    margin: 2rem 0;
    text-align: center;
}

.share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.share-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.share-link.facebook:hover {
    background: #1877f2;
}

.share-link.twitter:hover {
    background: #1da1f2;
}

.share-link.linkedin:hover {
    background: #0077b5;
}

.share-link.whatsapp:hover {
    background: #25d366;
}

.share-link.telegram:hover {
    background: #0088cc;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-links {
        flex-direction: column;
        align-items: center;
    }
    
    .share-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .advantage-card,
    .document-card,
    .support-card,
    .social-card {
        padding: 2rem;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
    
    .demo-video h3 {
        font-size: 1.5rem;
    }
} 

/* Content Pages (Privacy Policy, Terms of Service, Contact) */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.content-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.social-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

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

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .content-text {
        padding: 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-text {
        padding: 1.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Page Styles */
.testimonials-stats {
    background: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.featured-testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.author-university,
.author-program {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.success-stories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-title {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.story-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.video-testimonials {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.video-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.university-testimonials {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.university-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.university-content {
    display: none;
}

.university-content.active {
    display: block;
}

.leave-review {
    padding: 4rem 0;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-form {
    margin-top: 3rem;
    text-align: left;
}

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

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .university-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
} 

/* Yukarı Çıkma Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.scroll-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid currentColor;
    margin-top: -2px;
}

/* Mobil için yukarı çıkma butonu */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
/* Cursor.com Design - Complete Redesign */

/* CSS Variables - Cursor.com Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #007AFF;
    --primary-hover: #0056CC;
    --primary-color-dark: #0056CC;
    --primary-light: #E3F2FD;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F4;
    --bg-dark: #1A1A1A;
    --bg-dark-secondary: #2D2D2D;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --text-tertiary: #9AA0A6;
    --text-light: #FFFFFF;
    --text-muted: #80868B;
    
    /* Border Colors */
    --border-light: #E8EAED;
    --border-medium: #DADCE0;
    --border-dark: #9AA0A6;
    
    /* Shadow System */
    --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);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* Dark Mode Variables */
.dark-mode {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2D2D2D;
    --bg-tertiary: #3C3C3C;
    --text-primary: #FFFFFF;
    --text-secondary: #E8EAED;
    --text-tertiary: #9AA0A6;
    --border-light: #3C3C3C;
    --border-medium: #5F6368;
    --border-dark: #80868B;
}

/* Dark Mode Specific Styles */
.dark-mode .header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-light);
}

.dark-mode .nav-menu a {
    color: var(--text-secondary);
}

.dark-mode .nav-menu a:hover {
    color: var(--text-primary);
}

.dark-mode .language-selector select {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .language-selector select:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .theme-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .feature-card,
.dark-mode .university-card,
.dark-mode .faculty-card,
.dark-mode .level-card,
.dark-mode .document-card,
.dark-mode .faq-item,
.dark-mode .testimonial-card,
.dark-mode .link-card {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .feature-card:hover,
.dark-mode .university-card:hover,
.dark-mode .faculty-card:hover,
.dark-mode .level-card:hover,
.dark-mode .document-card:hover,
.dark-mode .faq-item:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .link-card:hover {
    border-color: var(--border-medium);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
}

.dark-mode .btn-secondary {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.dark-mode .footer a {
    color: var(--text-secondary);
}

.dark-mode .footer a:hover {
    color: var(--text-primary);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header and Navigation - Cursor.com Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand a {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-brand a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector - Cursor.com Style */
.language-selector {
    margin-left: 2rem;
}

.language-selector select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 120px;
}

.language-selector select:hover {
    border-color: var(--border-medium);
    background: var(--bg-tertiary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Theme Toggle Button - Cursor.com Style */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 9999;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: scale(1.05);
}

/* Hero Section - Cursor.com Style */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Cursor.com Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles - Cursor.com Style */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid - Cursor.com Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Backgrounds */
.services-section {
    background: var(--bg-secondary);
}

.faculties-section {
    background: var(--bg-secondary);
}

.documents-section {
    background: var(--bg-secondary);
}

.faq-section {
    background: var(--bg-secondary);
}

.testimonials {
    background: var(--bg-secondary);
}

/* Contact Banner */
.contact-banner {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    opacity: 0.9;
    font-size: var(--font-size-sm);
}

/* Admission Notice */
.admission-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
}

.notice-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.notice-card h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.admission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
}

/* Quick Links */
.quick-links {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.quick-links .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.link-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    display: block;
}

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

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.university-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.university-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.university-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 3px solid var(--border-light);
}

.university-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.university-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.university-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.university-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Faculties Grid */
.faculties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.faculty-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faculty-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.faculty-card ul {
    list-style: none;
    padding: 0;
}

.faculty-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.faculty-card li:last-child {
    border-bottom: none;
}

/* Education Levels */
.education-levels {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.level-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.level-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.document-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.document-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.document-card li:last-child {
    border-bottom: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.faq-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.cta-buttons .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card .role {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
}

/* Card Component - Cursor.com Style */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

/* Forms - Cursor.com Style */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-medium);
}

/* Messages - Cursor.com Style */
.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message.success {
    background: #E8F5E8;
    color: #1E7E34;
    border: 1px solid #C3E6C3;
}

.message.error {
    background: #F8E8E8;
    color: #DC3545;
    border: 1px solid #F5C6C6;
}

.message.info {
    background: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

/* Footer - Cursor.com Style */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-keywords p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    color: var(--text-tertiary);
}

/* Flag Icons - Cursor.com Style */
.flag-icon {
    display: inline-block;
    width: 48px;
    height: 32px;
    border-radius: 4px;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    background-size: cover;
    background-position: center;
}

.feature-card .icon .flag-icon {
    display: block;
    width: 64px;
    height: 42px;
    margin: 0 auto 1.5rem;
}

.flag-tr {
    background: linear-gradient(to bottom, #E30A17 50%, #ffffff 50%);
    position: relative;
}

.flag-tr::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-en {
    background: linear-gradient(45deg, #012169 0%, #012169 25%, #ffffff 25%, #ffffff 50%, #C8102E 50%, #C8102E 75%, #ffffff 75%);
}

.flag-ua {
    background: linear-gradient(to bottom, #005BBB 50%, #FFD700 50%);
}

.flag-az {
    background: linear-gradient(to bottom, #3F9C35 50%, #ED2939 50%);
    position: relative;
}

.flag-az::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-ru {
    background: linear-gradient(to bottom, #ffffff 33%, #0039A6 33% 66%, #D52B1E 66%);
}

.flag-de {
    background: linear-gradient(to bottom, #000000 33%, #DD0000 33% 66%, #FFCE00 66%);
}

.flag-us {
    background: linear-gradient(45deg, #B22234 0%, #B22234 25%, #ffffff 25%, #ffffff 50%, #3C3B6E 50%, #3C3B6E 75%, #ffffff 75%);
    position: relative;
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #DC143C 50%);
}

.flag-uz {
    background: linear-gradient(to bottom, #1EB53A 50%, #0099B5 50%);
    position: relative;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem var(--container-padding);
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .faculties-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-2xl);
    }
    
    .admission-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-xl);
    }
    
    .university-card,
    .faculty-card,
    .document-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .university-image {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --text-secondary: #000000;
    }
    
    .dark-mode {
        --border-light: #ffffff;
        --border-medium: #ffffff;
        --text-secondary: #ffffff;
    }
} 

/* About Section */
.about-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.target-audience h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
    padding: 0;
}

.target-audience li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.document-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.document-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
}

.demo-steps {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.demo-video {
    text-align: center;
    margin-top: 4rem;
}

.demo-video h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-video p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Live Support Section */
.live-support-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.social-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Share Buttons */
.footer-links-bottom {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

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

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

.share-buttons {
    margin: 2rem 0;
    text-align: center;
}

.share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.share-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.share-link.facebook:hover {
    background: #1877f2;
}

.share-link.twitter:hover {
    background: #1da1f2;
}

.share-link.linkedin:hover {
    background: #0077b5;
}

.share-link.whatsapp:hover {
    background: #25d366;
}

.share-link.telegram:hover {
    background: #0088cc;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-links {
        flex-direction: column;
        align-items: center;
    }
    
    .share-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .advantage-card,
    .document-card,
    .support-card,
    .social-card {
        padding: 2rem;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
    
    .demo-video h3 {
        font-size: 1.5rem;
    }
} 

/* Content Pages (Privacy Policy, Terms of Service, Contact) */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.content-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.social-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

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

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .content-text {
        padding: 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-text {
        padding: 1.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Page Styles */
.testimonials-stats {
    background: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.featured-testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.author-university,
.author-program {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.success-stories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-title {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.story-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.video-testimonials {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.video-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.university-testimonials {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.university-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.university-content {
    display: none;
}

.university-content.active {
    display: block;
}

.leave-review {
    padding: 4rem 0;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-form {
    margin-top: 3rem;
    text-align: left;
}

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

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .university-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
} 

/* Yukarı Çıkma Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.scroll-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid currentColor;
    margin-top: -2px;
}

/* Mobil için yukarı çıkma butonu */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
/* Cursor.com Design - Complete Redesign */

/* CSS Variables - Cursor.com Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #007AFF;
    --primary-hover: #0056CC;
    --primary-color-dark: #0056CC;
    --primary-light: #E3F2FD;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F4;
    --bg-dark: #1A1A1A;
    --bg-dark-secondary: #2D2D2D;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #5F6368;
    --text-tertiary: #9AA0A6;
    --text-light: #FFFFFF;
    --text-muted: #80868B;
    
    /* Border Colors */
    --border-light: #E8EAED;
    --border-medium: #DADCE0;
    --border-dark: #9AA0A6;
    
    /* Shadow System */
    --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);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

/* Dark Mode Variables */
.dark-mode {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2D2D2D;
    --bg-tertiary: #3C3C3C;
    --text-primary: #FFFFFF;
    --text-secondary: #E8EAED;
    --text-tertiary: #9AA0A6;
    --border-light: #3C3C3C;
    --border-medium: #5F6368;
    --border-dark: #80868B;
}

/* Dark Mode Specific Styles */
.dark-mode .header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-light);
}

.dark-mode .nav-menu a {
    color: var(--text-secondary);
}

.dark-mode .nav-menu a:hover {
    color: var(--text-primary);
}

.dark-mode .language-selector select {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .language-selector select:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .theme-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .feature-card,
.dark-mode .university-card,
.dark-mode .faculty-card,
.dark-mode .level-card,
.dark-mode .document-card,
.dark-mode .faq-item,
.dark-mode .testimonial-card,
.dark-mode .link-card {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .feature-card:hover,
.dark-mode .university-card:hover,
.dark-mode .faculty-card:hover,
.dark-mode .level-card:hover,
.dark-mode .document-card:hover,
.dark-mode .faq-item:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .link-card:hover {
    border-color: var(--border-medium);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
}

.dark-mode .btn-secondary {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

.dark-mode .footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.dark-mode .footer a {
    color: var(--text-secondary);
}

.dark-mode .footer a:hover {
    color: var(--text-primary);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header and Navigation - Cursor.com Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand a {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-brand a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector - Cursor.com Style */
.language-selector {
    margin-left: 2rem;
}

.language-selector select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 120px;
}

.language-selector select:hover {
    border-color: var(--border-medium);
    background: var(--bg-tertiary);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Theme Toggle Button - Cursor.com Style */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 9999;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: scale(1.05);
}

/* Hero Section - Cursor.com Style */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Cursor.com Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles - Cursor.com Style */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid - Cursor.com Style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Backgrounds */
.services-section {
    background: var(--bg-secondary);
}

.faculties-section {
    background: var(--bg-secondary);
}

.documents-section {
    background: var(--bg-secondary);
}

.faq-section {
    background: var(--bg-secondary);
}

.testimonials {
    background: var(--bg-secondary);
}

/* Contact Banner */
.contact-banner {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    opacity: 0.9;
    font-size: var(--font-size-sm);
}

/* Admission Notice */
.admission-notice {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
}

.notice-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.notice-card h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.notice-card p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.admission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
}

/* Quick Links */
.quick-links {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.quick-links .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.link-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    display: block;
}

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

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.university-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-medium);
}

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

.university-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.university-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 3px solid var(--border-light);
}

.university-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.university-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.university-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.university-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Faculties Grid */
.faculties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.faculty-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faculty-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.faculty-card ul {
    list-style: none;
    padding: 0;
}

.faculty-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.faculty-card li:last-child {
    border-bottom: none;
}

/* Education Levels */
.education-levels {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.level-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.level-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.level-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.document-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.document-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.document-card li:last-child {
    border-bottom: none;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.faq-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.cta-buttons .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-card .role {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
}

/* Card Component - Cursor.com Style */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

/* Forms - Cursor.com Style */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--border-medium);
}

/* Messages - Cursor.com Style */
.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message.success {
    background: #E8F5E8;
    color: #1E7E34;
    border: 1px solid #C3E6C3;
}

.message.error {
    background: #F8E8E8;
    color: #DC3545;
    border: 1px solid #F5C6C6;
}

.message.info {
    background: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

/* Footer - Cursor.com Style */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

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

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-keywords p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    color: var(--text-tertiary);
}

/* Flag Icons - Cursor.com Style */
.flag-icon {
    display: inline-block;
    width: 48px;
    height: 32px;
    border-radius: 4px;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    background-size: cover;
    background-position: center;
}

.feature-card .icon .flag-icon {
    display: block;
    width: 64px;
    height: 42px;
    margin: 0 auto 1.5rem;
}

.flag-tr {
    background: linear-gradient(to bottom, #E30A17 50%, #ffffff 50%);
    position: relative;
}

.flag-tr::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-en {
    background: linear-gradient(45deg, #012169 0%, #012169 25%, #ffffff 25%, #ffffff 50%, #C8102E 50%, #C8102E 75%, #ffffff 75%);
}

.flag-ua {
    background: linear-gradient(to bottom, #005BBB 50%, #FFD700 50%);
}

.flag-az {
    background: linear-gradient(to bottom, #3F9C35 50%, #ED2939 50%);
    position: relative;
}

.flag-az::before {
    content: '☪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #ffffff;
}

.flag-ru {
    background: linear-gradient(to bottom, #ffffff 33%, #0039A6 33% 66%, #D52B1E 66%);
}

.flag-de {
    background: linear-gradient(to bottom, #000000 33%, #DD0000 33% 66%, #FFCE00 66%);
}

.flag-us {
    background: linear-gradient(45deg, #B22234 0%, #B22234 25%, #ffffff 25%, #ffffff 50%, #3C3B6E 50%, #3C3B6E 75%, #ffffff 75%);
    position: relative;
}

.flag-pl {
    background: linear-gradient(to bottom, #ffffff 50%, #DC143C 50%);
}

.flag-uz {
    background: linear-gradient(to bottom, #1EB53A 50%, #0099B5 50%);
    position: relative;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem var(--container-padding);
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .universities-grid {
        grid-template-columns: 1fr;
    }
    
    .faculties-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-2xl);
    }
    
    .admission-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-card {
        padding: 1.5rem;
    }
    
    .notice-card h2 {
        font-size: var(--font-size-xl);
    }
    
    .university-card,
    .faculty-card,
    .document-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .university-image {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --text-secondary: #000000;
    }
    
    .dark-mode {
        --border-light: #ffffff;
        --border-medium: #ffffff;
        --text-secondary: #ffffff;
    }
} 

/* About Section */
.about-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.target-audience h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.target-audience ul {
    list-style: none;
    padding: 0;
}

.target-audience li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.document-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.document-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
}

.demo-steps {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.demo-video {
    text-align: center;
    margin-top: 4rem;
}

.demo-video h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-video p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Live Support Section */
.live-support-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.social-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Share Buttons */
.footer-links-bottom {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

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

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

.share-buttons {
    margin: 2rem 0;
    text-align: center;
}

.share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.share-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.share-link.facebook:hover {
    background: #1877f2;
}

.share-link.twitter:hover {
    background: #1da1f2;
}

.share-link.linkedin:hover {
    background: #0077b5;
}

.share-link.whatsapp:hover {
    background: #25d366;
}

.share-link.telegram:hover {
    background: #0088cc;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-links {
        flex-direction: column;
        align-items: center;
    }
    
    .share-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .advantage-card,
    .document-card,
    .support-card,
    .social-card {
        padding: 2rem;
    }
    
    .step-item {
        margin-bottom: 2rem;
    }
    
    .demo-video h3 {
        font-size: 1.5rem;
    }
} 

/* Content Pages (Privacy Policy, Terms of Service, Contact) */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem 0;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.content-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.social-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

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

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .content-text {
        padding: 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-buttons .btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-text {
        padding: 1.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

/* Testimonials Page Styles */
.testimonials-stats {
    background: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.featured-testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.author-university,
.author-program {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.success-stories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-title {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.story-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.video-testimonials {
    padding: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.video-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.university-testimonials {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.university-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.university-content {
    display: none;
}

.university-content.active {
    display: block;
}

.leave-review {
    padding: 4rem 0;
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-form {
    margin-top: 3rem;
    text-align: left;
}

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

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .university-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
} 

/* Yukarı Çıkma Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.scroll-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.scroll-to-top .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid currentColor;
    margin-top: -2px;
}

/* Mobil için yukarı çıkma butonu */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
} 

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }
}

/* Modern Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header h4 {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-primary);
}

.chat-message {
    margin-bottom: 12px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message p {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.chat-message.bot p {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message.user p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.quick-questions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 16px 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.chat-footer button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.chat-footer button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Dark mode support for chat widget */
.dark-mode .live-chat-widget {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-body {
    background: var(--bg-primary);
}

.dark-mode .chat-footer {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.dark-mode .chat-footer input {
    background: var(--bg-primary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn {
    background: var(--bg-secondary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.dark-mode .quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

/* Responsive design */
@media (max-width: 768px) {
    .live-chat-widget {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 10px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-body {
        padding: 16px;
    }
    
    .chat-footer {
        padding: 12px 16px;
    }
} 

/* Modern Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.floating-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for FAB */
.dark-mode .floating-action-btn {
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
}

.dark-mode .floating-action-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.5);
}

/* Responsive FAB */
@media (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .floating-action-btn {
        width: 52px;
        height: 52px;
        font-size