/* Modern Kontakt Page Styles */

/* Kontakt-spezifische Fixes */

/* Aber Section Divider Linie bleibt bestehen */
:root {
    --primary-color: #f03a70;
    --secondary-color: #e91e63;
    --accent-color: #d81b60;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-start: #f03a70;
    --gradient-end: #e91e63;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}


/* Kontakt Hero Section - Same as About */
.kontakt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 120px;
    padding-bottom: 2rem;
}

.kontakt-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kontakt-hero .animated-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.kontakt-hero .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.kontakt-hero .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.kontakt-hero .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.kontakt-hero .shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

/* Desktop Text-Größe für bessere Sichtbarkeit */
@media (min-width: 769px) {
    .kontakt-hero .hero-description p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

/* Start Options Section */
.start-options-section {
    background: #000000;
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.start-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(240, 58, 112, 0.3);
    border-color: rgba(240, 58, 112, 0.5);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.option-card .card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.option-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.option-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #f03a70;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.option-card:hover .option-button {
    color: white;
}

/* Phone Contact Section */
.phone-contact-section {
    background: #000000;
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.phone-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phone-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    animation: pulse 2s infinite;
}

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

.phone-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.phone-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #f03a70;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #e91e63;
    transform: scale(1.05);
}

.phone-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.phone-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature i {
    color: #f03a70;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .start-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-card {
        padding: 2rem 1.5rem;
    }
    
    .phone-card {
        padding: 3rem 2rem;
    }
    
    .phone-number {
        font-size: 2.5rem;
    }
    
    .phone-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Section Divider */
.section-divider {
    background: #000000;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    border-radius: 2px;
}

/* Mobile Responsive Shapes für bessere Lesbarkeit */
@media (max-width: 768px) {
    .kontakt-hero .shape-1 {
        background: linear-gradient(45deg, rgba(240, 58, 112, 0.3), rgba(233, 30, 99, 0.3));
        width: 200px;
        height: 200px;
        top: 10%;
        left: -10%;
    }
    
    .kontakt-hero .shape-2 {
        background: linear-gradient(45deg, rgba(240, 58, 112, 0.2), rgba(233, 30, 99, 0.2));
        width: 150px;
        height: 150px;
        top: 70%;
        right: -10%;
    }
    
    .kontakt-hero .shape-3 {
        background: linear-gradient(45deg, rgba(240, 58, 112, 0.25), rgba(233, 30, 99, 0.25));
        width: 180px;
        height: 180px;
        bottom: 10%;
        left: 70%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
    66% {
        transform: translateY(20px) translateX(-15px) scale(0.9);
    }
}

.kontakt-hero #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.kontakt-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kontakt-hero .hero-description {
    position: relative;
    z-index: 2;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: #0a0a0a;
    position: relative;
}

.contact-methods .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-methods .section-header .text-gradient {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-methods .section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

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

.method-card.primary {
    background: linear-gradient(135deg, rgba(240, 58, 112, 0.1), rgba(233, 30, 99, 0.1));
    border-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.4);
    color: white;
}

.method-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.method-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* KI Chat Section Styles */
.ki-chat-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-container {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 600px;
}

.chat-header {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.chat-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.chat-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-color);
}

.status {
    color: #00ff00;
    font-size: 0.9rem;
}

.status i {
    color: #00ff00;
    font-size: 0.7rem;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 400px;
    max-height: 500px;
}

.chat-input-container {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.ki-chat-modal .chat-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ki-chat-modal .chat-input-wrapper input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ki-chat-modal .chat-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(240, 58, 112, 0.1);
}

.ki-chat-modal .chat-input-wrapper input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input-wrapper button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ki-chat-modal .chat-input-wrapper button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.4);
}

.ki-chat-modal .chat-input-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


.message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeInUp 0.3s ease;
}

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

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

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

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

.message.user .message-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    line-height: 1.5;
    position: relative;
}

.message.ai .message-content {
    background: rgba(240, 58, 112, 0.1);
    border-color: rgba(240, 58, 112, 0.2);
}

.message.user .message-content {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-reply {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 50;
    position: relative;
}

.quick-reply:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}


.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 15px;
    margin: 1rem 0;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-methods .section-header h2 {
        font-size: 2.5rem;
    }
    
    .chat-modal-content {
        width: 95%;
        height: 85vh;
        margin: 1rem;
    }
    
    .ki-chat-modal .chat-messages {
        padding: 1rem;
    }
    
    .message {
        max-width: 95%;
    }
    
    .ki-chat-modal .chat-input-container {
        padding: 1rem;
    }
    
    .ki-chat-modal .chat-input-wrapper {
        gap: 0.5rem;
    }
    
    .ki-chat-modal .chat-input-wrapper button {
        width: 45px;
        height: 45px;
    }
    
    .chat-title {
        font-size: 0.8rem;
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

.status i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    max-height: 50vh;
    min-height: 400px;
}

.message {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: messageSlideIn 0.5s ease forwards;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.message.ai .message-avatar {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.message.user .message-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    max-width: 70%;
    color: var(--text-color);
    line-height: 1.6;
}

.message.ai .message-content {
    border-bottom-left-radius: 5px;
}

.message.user .message-content {
    background: rgba(240, 58, 112, 0.2);
    border-bottom-right-radius: 5px;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border-bottom-left-radius: 5px;
    max-width: 70%;
}

.typing-dots {
    display: flex;
    gap: 0.3rem;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-input-container {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-input-wrapper input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-send-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(240, 58, 112, 0.3);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-reply {
    background: rgba(240, 58, 112, 0.1);
    border: 1px solid rgba(240, 58, 112, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-reply:hover {
    background: rgba(240, 58, 112, 0.2);
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    background: var(--dark-bg);
}

.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(240, 58, 112, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white !important;
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.3);
    transition: all 0.3s ease;
}

.contact-icon i {
    color: white !important;
}

.contact-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .kontakt-hero {
        padding-top: 0 !important;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .chat-container {
        margin: 1rem;
        max-height: 70vh;
    }
    
    .chat-messages {
        max-height: 40vh;
        min-height: 300px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .floating-icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-input-container {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Hidden state for chat container */
.chat-container.hidden {
    display: none;
}

/* Show chat container by default */
.chat-container {
    display: flex;
}

/* Success message styles */
.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: var(--success-color);
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

.success-message h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 0;
}
