/* CSS Variables */
:root {
    /* Light Theme Colors - Beige background with chocolate text */
    --background: #F5F5DC; /* Beige */
    --foreground: #7B3F00; /* Chocolate */
    --card: #FFFFFF;
    --card-foreground: #7B3F00;
    --popover: #FFFFFF;
    --popover-foreground: #7B3F00;
    --primary: #7B3F00; /* Chocolate */
    --primary-foreground: #F5F5DC; /* Beige */
    --secondary: #E6D7B3; /* Dark Beige */
    --secondary-foreground: #7B3F00;
    --muted: #E6D7B3; /* Dark Beige */
    --muted-foreground: #8B4513; /* Light Chocolate */
    --accent: #E6D7B3; /* Dark Beige */
    --accent-foreground: #7B3F00;
    --destructive: #DC2626;
    --destructive-foreground: #FFFFFF;
    --border: #D4B996;
    --input: #FFFFFF;
    --ring: #7B3F00;
    --radius: 0.5rem;
}

.dark {
    /* Dark Theme Colors - Pure Chocolate background with beige text */
    --background: #7B3F00; /* Pure Chocolate background */
    --foreground: #F5F5DC; /* Beige text */
    --card: #8B4513; /* Light Chocolate cards */
    --card-foreground: #F5F5DC;
    --popover: #8B4513;
    --popover-foreground: #F5F5DC;
    --primary: #F5F5DC; /* Beige buttons */
    --primary-foreground: #7B3F00; /* Chocolate text on beige */
    --secondary: #6B3500; /* Dark Chocolate */
    --secondary-foreground: #F5F5DC;
    --muted: #6B3500; /* Dark Chocolate */
    --muted-foreground: #E6D7B3; /* Light Beige */
    --accent: #6B3500; /* Dark Chocolate */
    --accent-foreground: #F5F5DC;
    --destructive: #DC2626;
    --destructive-foreground: #FFFFFF;
    --border: #9C5D27; /* Medium Chocolate */
    --input: #8B4513;
    --ring: #F5F5DC;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.logo {
    font-family: 'Righteous', cursive;
    font-size: 1.75rem;
    color: var(--foreground);
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

header.scrolled {
    background-color: color-mix(in srgb, var(--background) 80%, transparent);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.2s;
}

.theme-toggle:hover {
    background-color: var(--muted);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: 1px solid transparent;
    outline: none;
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-ghost:hover {
    background-color: var(--muted);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, transparent);
}

.btn-lg {
    height: 3.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0 2rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--muted-foreground));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.search-box {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 48rem;
    margin: 0 auto 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.search-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
}

.input-field {
    width: 100%;
    height: 3.5rem;
    padding: 0 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
}

.input-field::placeholder {
    color: var(--muted-foreground);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* User Type Section */
.user-type {
    padding: 5rem 0;
    background-color: var(--muted);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.user-type-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .user-type-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.user-type-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.user-type-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.user-type-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: color-mix(in srgb, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.user-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.user-type-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.feature-icon {
    color: var(--primary);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-foreground);
}

/* Footer */
footer {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Righteous', cursive;
    font-size: 1.75rem;
    color: var(--foreground);
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0 auto 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

@media (min-width: 640px) {
    .sm\:inline-flex {
        display: inline-flex;
    }
}

/* Auth Pages Styles */
.auth-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
}

.auth-card {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 28rem;
    margin: 0 auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-description {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}

.forgot-password {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.user-type-selection {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.radio-label:hover {
    border-color: var(--primary);
}

.radio-label input[type="radio"] {
    margin: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border);
}

.auth-divider::before {
    margin-right: 1rem;
}

.auth-divider::after {
    margin-left: 1rem;
}

.social-auth {
    margin-bottom: 2rem;
}

.auth-footer {
    text-align: center;
    color: var(--muted-foreground);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.page-header-content p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Section Styles */
.page-section {
    padding: 5rem 0;
}

.bg-muted {
    background-color: var(--muted);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step .step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.step-content p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.step-content p:last-child {
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.benefit-card p {
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Services Categories */
.services-category {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    font-size: 2rem;
    color: var(--primary);
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--foreground);
}

.category-content p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.service-list {
    display: grid;
    gap: 1.5rem;
}

.service-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.service-item p {
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.mission-card p, .vision-card p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.mission-card p:last-child, .vision-card p:last-child {
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.value-card p {
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Guarantee & Commitment */
.guarantee-content, .commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h2, .commitment-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.guarantee-content p, .commitment-content p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.guarantee-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.guarantee-item h4 {
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.guarantee-item p {
    text-align: left;
    margin: 0;
    color: var(--muted-foreground);
}

.commitment-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.commitment-item i {
    color: var(--primary);
    flex-shrink: 0;
}

.commitment-item span {
    color: var(--muted-foreground);
}

/* CTA Section */
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Story Content */
.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--foreground);
    text-align: center;
}

.story-content p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step .step-number {
        align-self: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-category {
        padding: 1.5rem;
    }
    
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-container, .contact-info-container {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2, .contact-info-container h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-form-container p, .contact-info-container p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.textarea-field {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--muted);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: var(--muted-foreground);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* Social Links */
.social-links {
    margin-bottom: 2.5rem;
}

.social-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

/* FAQ Preview */
.faq-preview {
    padding: 1.5rem;
    background-color: var(--muted);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.faq-preview h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.faq-preview p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.faq-preview a {
    color: var(--primary);
    text-decoration: none;
}

.faq-preview a:hover {
    text-decoration: underline;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.faq-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Success Message */
.success-content {
    background-color: var(--card);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 400px;
    margin: 0 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.success-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.success-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Utility Classes */
.mt-6 {
    margin-top: 1.5rem;
}

/* FAQ Page Styles */
.faq-navigation {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-navigation h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--card);
    color: var(--foreground);
    text-decoration: none;
    border-radius: 2rem;
    border: 1px solid var(--border);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

/* FAQ Category */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

/* FAQ Accordion */
.faq-accordion {
    background-color: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--foreground);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question:hover {
    background-color: var(--muted);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--muted-foreground);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--muted);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--foreground);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Spacing Utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* Forgot Password Page Styles */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-button:hover {
    color: var(--primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.input-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.input-note i {
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.success-message p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-info {
    max-width: 28rem;
    margin: 2rem auto 0;
}

.support-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}

.support-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.support-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.auth-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .support-card {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-notice {
    margin-bottom: 2rem;
}

.notice-box {
    background-color: color-mix(in srgb, var(--primary) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.notice-box p {
    margin: 0;
    line-height: 1.6;
}

.toc-container {
    background-color: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}

.toc-container h3 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-nav a {
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.toc-nav a:hover {
    color: var(--muted-foreground);
}

.toc-nav a:last-child {
    border-bottom: none;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--foreground);
}

.legal-section p {
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section strong {
    color: var(--foreground);
}

.legal-section address {
    font-style: normal;
    background-color: var(--muted);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    margin: 1rem 0;
}

.legal-acknowledgment {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
    margin-top: 3rem;
}

.legal-acknowledgment p {
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .toc-container {
        padding: 1.5rem;
    }
    
    .notice-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .legal-section address {
        padding: 1.25rem;
    }
}

/* Footer Links Styles */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--foreground);
    text-decoration: underline;
}

.footer-separator {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Ensure footer text colors work with both themes */
footer {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Righteous', cursive;
    font-size: 1.75rem;
    color: var(--foreground);
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0 auto 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Responsive design for footer links */
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Mobile Responsive Fixes for Contact Page */
@media (max-width: 768px) {
    /* Contact Grid Layout */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Form Container */
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    /* Form Inputs */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Contact Methods */
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Header Navigation */
    .nav-links {
        display: none;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Page Header */
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .container {
        padding: 0 1rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1rem;
    }
    
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-header-content h1 {
        font-size: 1.75rem;
    }
    
    /* Form Elements */
    .input-field,
    .textarea-field {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Buttons */
    .btn-lg {
        height: 3rem;
        font-size: 1rem;
    }
    
    /* Social Icons */
    .social-icons {
        justify-content: center;
    }
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    /* Header layout */
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Hide desktop navigation */
    .nav-links {
        display: none !important;
    }
    
    /* Stack header actions vertically */
    .header-actions {
        display: flex;
        gap: 0.5rem;
    }
    
    /* Make buttons smaller on mobile */
    .header-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Logo size */
    .logo {
        font-size: 1.5rem;
    }
    
    /* Ensure container doesn't overflow */
    .container {
        padding: 0 1rem;
        overflow-x: hidden;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .header-actions .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .header-actions {
        gap: 0.25rem;
    }
}

/* Mobile Header Fix - Replace the emergency fix with this */
@media (max-width: 767px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .logo {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 1.3rem;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
    }
    
    .header-actions .btn {
        white-space: nowrap;
        min-width: 70px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 4px;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-actions .btn {
        min-width: 60px;
        font-size: 0.75rem;
        padding: 6px 8px;
    }
}

/* Professionals Section - Isolated Styles */
.professionals-custom-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.professionals-custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.professionals-custom-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.professionals-custom-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.professionals-custom-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
}

.professionals-custom-item {
    flex: 1;
    text-align: center;
}

.professionals-custom-item img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.professionals-custom-item p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .professionals-custom-item img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .professionals-custom-section {
        padding: 2rem 0;
    }
    
    .professionals-custom-title {
        font-size: 2rem;
    }
    
    .professionals-custom-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .professionals-custom-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .professionals-custom-item img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .professionals-custom-container {
        padding: 0 15px;
    }
    
    .professionals-custom-title {
        font-size: 1.8rem;
    }
    
    .professionals-custom-item img {
        width: 180px;
        height: 180px;
    }
    
    .professionals-custom-item p {
        font-size: 1rem;
    }
}


/* Company Story Section with Extra Tall Images */
.company-story {
    padding: 4rem 0;
    background: var(--muted);
}

.story-images-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.story-item {
    flex: 0 1 400px;
    text-align: center;
}

.story-image-container {
    width: 100%;
    height: 500px; /* Increased to 500px - very tall */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.story-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.story-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-images-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .story-item {
        flex: 0 1 100%;
        max-width: 400px;
    }
    
    .story-image-container {
        height: 350px; /* Still tall on mobile */
    }
}

/* Live Chat Styles */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B3F00, #9C5D27);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(123, 63, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(123, 63, 0, 0.4);
}

.chat-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(123, 63, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(123, 63, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(123, 63, 0, 0); }
}

.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    border: 1px solid var(--border);
}

.chat-container.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-header {
    background: linear-gradient(135deg, #7B3F00, #9C5D27);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.chat-header p {
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.close-chat {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.chat-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: var(--background);
    color: var(--text-primary);
}

.chat-input:focus {
    outline: none;
    border-color: #7B3F00;
    box-shadow: 0 0 0 3px rgba(123, 63, 0, 0.1);
}

.chat-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

.chat-submit {
    background: linear-gradient(135deg, #7B3F00, #9C5D27);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.chat-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 63, 0, 0.3);
}

.chat-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.chat-success {
    background: #d1edff;
    border: 1px solid #0d6efd;
    color: #055160;
}

.chat-error {
    background: #fef3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.chat-country {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .live-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-container {
        width: 320px;
        right: -10px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .live-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-container {
        width: 280px;
        right: -20px;
    }
}

.social-login {
    margin: 20px 0;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


