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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

.phone-number {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.phone-number i {
    color: #0066cc;
    font-size: 16px;
}



.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* Desktop and Mobile Image Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slideshow Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background: rgba(0, 102, 204, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0066cc;
    transform: scale(1.2);
}

/* Fade Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    display: grid;
    gap: 40px;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.mission, .vision {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission h3, .vision h3 {
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i {
    color: #00d4ff;
}

.vision h3 i {
    color: #ff6b35;
}

.mission ul, .vision ul {
    list-style: none;
    padding: 0;
}

.mission li, .vision li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.mission li:before, .vision li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1rem;
}

.mission li:last-child, .vision li:last-child {
    border-bottom: none;
}

/* Responsive Mission & Vision */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission, .vision {
        padding: 25px;
    }
    
    .mission h3, .vision h3 {
        font-size: 1.3rem;
    }
}

.features {
    display: grid;
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
}

/* Location Section */
.location-section {
    margin-top: 10px;
}

.location-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 10px 0 20px;
    color: #0066cc;
}

.map-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* kare görünüm */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-container { /* stays for aspect ratio etc. */ }

.location-info {
    text-align: center;
    margin-top: 16px;
    color: #444;
}

.location-info h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.location-info p i {
    color: #0066cc;
    margin-right: 6px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #fff;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.gallery-category {
    margin-bottom: 60px;
}

.gallery-category h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0066cc;
    position: relative;
}

.gallery-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0066cc;
    border-radius: 2px;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item {
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #0066cc;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.prev-lightbox,
.next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.8);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000;
}

.prev-lightbox {
    left: 20px;
}

.next-lightbox {
    right: 20px;
}

.prev-lightbox:hover,
.next-lightbox:hover {
    background: rgba(0, 102, 204, 1);
    transform: translateY(-50%) scale(1.1);
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

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

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: #fff;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #0066cc;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.contact-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Live Support Button */
.live-support-button {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    z-index: 9998;
    border: 3px solid #fff;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.live-support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.6);
    background: linear-gradient(135deg, #004499, #0066cc);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-text strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.support-text span {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px 18px 0 0;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
}

.chat-title i {
    font-size: 16px;
}

.close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.assistant-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.assistant-message .message-bubble {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border-radius: 18px 18px 18px 4px;
}

.user-message .message-bubble {
    background: #ffd700;
    color: #333;
    border-radius: 18px 18px 4px 18px;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    padding: 0 5px;
}

.chat-input {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input input:focus {
    border-color: #0066cc;
}

.send-button {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.send-button:hover {
    transform: scale(1.1);
}

.quick-actions {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-btn {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0066cc;
    border: 1px solid #0066cc;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 4px solid #fff;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-button i {
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

/* WhatsApp Button Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-button {
    animation: whatsappPulse 2s infinite;
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Video Styles */
.slide video {
    object-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-number {
        position: static;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-category h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile video optimization */
    .slide video {
        object-fit: cover;
        object-position: center;
    }
    
    /* Mobile Image Classes */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    /* Mobile video section */
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-container {
        margin: 0 20px;
    }
    
    /* Mobile lightbox */
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .close-lightbox {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .prev-lightbox,
    .next-lightbox {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .prev-lightbox {
        left: 10px;
    }
    
    .next-lightbox {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    /* Mobile testimonials */
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Mobile Live Support Button */
    .live-support-button {
        bottom: 100px;
        right: 20px;
        padding: 12px 15px;
        min-width: 180px;
    }
    
    .live-indicator {
        font-size: 11px;
        gap: 6px;
    }
    
    .support-text strong {
        font-size: 13px;
    }
    
    .support-text span {
        font-size: 10px;
    }
    
    /* Mobile Chat Widget */
    .chat-widget {
        width: 320px;
        height: 450px;
        bottom: 100px;
        right: 20px;
    }
    
    .chat-header {
        padding: 12px 15px;
    }
    
    .chat-title {
        font-size: 13px;
    }
    
    .chat-messages {
        padding: 15px;
    }
    
    .message-bubble {
        max-width: 85%;
        padding: 10px 14px;
    }
    
    .message-bubble p {
        font-size: 13px;
    }
    
    .chat-input {
        padding: 12px 15px;
    }
    
    .chat-input input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .quick-actions {
        padding: 12px 15px;
        gap: 6px;
    }
    
    .quick-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    /* Mobile WhatsApp Button */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    

}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
} 