/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a8a;
    --gold: #f59e0b;
    --light-gray: #f8fafc;
    --gray: #6b7280;
    --dark-gray: #374151;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
.playfair {
    font-family: 'Playfair Display', serif;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header Styles */
.top-contact-bar {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.5rem 0;
    display: none;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1rem;
}

.contact-item {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item:hover {
    color: var(--gold);
}

.address p {
    font-size: 0.875rem;
}

.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    color: var(--navy);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.brand-accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=1920') center/cover;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.card-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Team Cards */
.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.team-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin: 1rem 0 0.5rem;
}

.team-card .title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.team-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

/* Practice Areas */
.practice-area {
    text-align: center;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.practice-area:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.practice-area i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.practice-area h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.practice-area p {
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.chatbot-window {
    position: absolute;
    bottom: 4rem;
    right: 0;
    width: 320px;
    max-width: 90vw;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    max-height: 400px;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem 0.5rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
}

.chatbot-messages {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    background-color: #f8fafc;
}

.message {
    margin-bottom: 1rem;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.user-message .message-content {
    background-color: var(--gold);
    color: var(--white);
    border-bottom-right-radius: 0.25rem;
}

.bot-message .message-content {
    background-color: var(--navy);
    color: var(--white);
    border-bottom-left-radius: 0.25rem;
}

.chatbot-input-container {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.chatbot-send {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chatbot-send:hover {
    background-color: #d97706;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    background-color: var(--gold);
    transform: scale(1.05);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--navy);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray);
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (min-width: 768px) {
    .top-contact-bar {
        display: block;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .chatbot-window {
        width: 400px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 2rem);
        right: -1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* New Styles for Enhanced Landing Page */

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--gold);
}

/* Our Approach Section */
.approach-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: linear-gradient(135deg, var(--navy), var(--gold));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* AI CTA Section */
.ai-cta-section {
    margin: 3rem 0;
}

.ai-cta-card {
    background: linear-gradient(135deg, var(--navy), #1e40af);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.ai-cta-content {
    position: relative;
    z-index: 1;
}

.ai-cta-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.ai-cta-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.ai-cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ai-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

.ai-feature i {
    color: var(--gold);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Working Hours Section */
.working-hours-container {
    max-width: 600px;
    margin: 0 auto;
}

.working-hours-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.working-hours-header {
    background: var(--navy);
    color: white;
    padding: 2rem;
    text-align: center;
}

.working-hours-header i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.working-hours-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.working-hours-list {
    padding: 0;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.working-day:hover {
    background-color: #f8fafc;
}

.working-day.closed {
    background-color: #f8fafc;
    color: var(--gray);
}

.working-day .day {
    font-weight: 600;
    color: var(--navy);
}

.working-day.closed .day {
    color: var(--gray);
}

.working-day .hours {
    color: var(--gray);
    font-weight: 500;
}

.working-day.closed .hours {
    color: #9ca3af;
}

.working-hours-note {
    background: #f0f9ff;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0f2fe;
}

.working-hours-note p {
    margin: 0;
    color: var(--navy);
    text-align: center;
}

.working-hours-note i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Enhanced Chatbot Styles */
.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-title i {
    color: var(--gold);
    font-size: 1.2rem;
}

.chatbot-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    min-width: 120px;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.chatbot-toggle i {
    font-size: 1.2rem;
}

.chatbot-toggle span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Team Member Styles */
.team-member {
    padding: 2rem;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--gold);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background-color: var(--navy);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

/* Practice Area Styles */
.practice-area {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.practice-area:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.practice-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.practice-icon i {
    font-size: 2rem;
    color: var(--navy);
}

.practice-services {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.practice-services li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.practice-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Press Styles */
.press-releases {
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--navy);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
}

.press-content h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.press-content p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--navy);
}

.media-item {
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.media-logo {
    margin-bottom: 1rem;
}

.media-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.media-date {
    color: var(--gray);
    font-size: 0.875rem;
    font-style: italic;
}

.award-item {
    padding: 2rem;
}

.media-contact {
    margin-top: 2rem;
}

.media-contact p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

.media-contact i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .press-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile chatbot adjustments */
    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 2rem);
        max-width: 400px;
        height: 500px;
    }
    
    .chatbot-toggle {
        padding: 0.75rem 1rem;
        min-width: 100px;
        font-size: 0.8rem;
    }
    
    .chatbot-toggle span {
        display: none;
    }
    
    .chatbot-toggle i {
        font-size: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .ai-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-cta-text h3 {
        font-size: 2rem;
    }
    
    .working-day {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Enhanced Chatbot UI Styles */
.message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 85%;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.bot-message {
    align-self: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--navy), #1e40af);
    color: white;
    border: 2px solid var(--gold);
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: white;
    border: 2px solid var(--navy);
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--navy), #1e40af);
    color: white;
    border-bottom-right-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.user-message .message-content::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 8px solid var(--navy);
    border-top: 8px solid transparent;
}

.bot-message .message-content {
    background: white;
    border: 2px solid #e5e7eb;
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--gold);
    color: var(--dark-gray);
    position: relative;
}

/* Typewriter animation for bot messages */
.bot-message .message-content.typing {
    overflow: hidden;
    border-right: 2px solid var(--gold);
    animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold); }
}

.bot-message .message-content::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 8px solid white;
    border-top: 8px solid transparent;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    max-width: 85%;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingDot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--navy);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--gold);
        color: var(--navy);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.1rem;
        margin: 0.5rem 0;
        text-decoration: none;
        padding: 0.3rem 0.8rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-link:hover {
        color: var(--gold) !important;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    position: relative;
}

.alert-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-left: 4px solid #047857;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-left: 4px solid #b91c1c;
}

.alert-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-left: 4px solid #1d4ed8;
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Auto-hide flash messages */
.alert {
    animation: slideInRight 0.3s ease-out, fadeOut 0.3s ease-in 4.7s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* CAPTCHA Styles */
.captcha-container {
    background-color: var(--light-gray);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--navy);
}

.captcha-question span {
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border: 2px solid var(--navy);
    border-radius: 4px;
    letter-spacing: 2px;
}

#refresh-captcha {
    padding: 0.5rem;
    font-size: 0.875rem;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#refresh-captcha:hover {
    background-color: #1e40af;
}

#captcha {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 0.5rem;
}

#captcha:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.captcha-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}