@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --primary: #004aad;
    --primary-dark: #00337a;
    --secondary: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007a7a, #00b8b8, #007a7a);
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.hero .highlight {
    font-size: 1.6rem;
    font-weight: 800;
    color: #d63031;
    margin-bottom: 40px;
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-radius: 10px;
    border: 2px solid #ffcccc;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.01);
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.about {
    background: #1a6e73;
    /* Teal color from image */
    text-align: center;
    color: #ffffff;
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.about h2 .tagline {
    font-size: 1.1rem;
    color: #ffd700;
    /* Lighter gold for better contrast on teal */
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
}

.about p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 1.05rem;
}

/* Video */
.video-section {
    text-align: center;
}

.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 80px 0;
}

.keep-unit-box {
    margin-bottom: 40px;
}

.keep-unit-text {
    color: var(--primary);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
}

.cta-button {
    background: var(--primary);
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 74, 173, 0.4);
}

.sub-cta {
    margin-top: 30px;
    font-weight: 600;
    color: var(--text-light);
}

.btn-red-gold {
    background: #d63031;
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--radius);
    /* Use the professional theme radius */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    /* More standard button look */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-red-gold:hover {
    background: #b32d2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(214, 48, 49, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero .highlight {
        font-size: 1.2rem;
    }

    .keep-unit-text {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .wa-floating-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* WhatsApp Floating Button */
.wa-floating-btn {
    display: flex !important;
    position: fixed !important;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999 !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.wa-floating-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.wa-floating-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Chatbot Modal */
.chatbot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.chatbot-modal.active {
    display: flex;
}

.chatbot-container {
    background: #e8f4f3;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #1a6e73 0%, #0f4f53 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chatbot-brand strong {
    font-size: 1.1rem;
}

.verified-badge {
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 0.7rem;
    margin-left: 5px;
}

.chatbot-tagline {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
}

.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
    max-height: 400px;
}

/* Custom Scrollbar for Chatbot */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a6e73 0%, #25d366 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0f4f53 0%, #128c7e 100%);
}

/* Firefox scrollbar */
.chatbot-messages {
    scrollbar-width: thin;
    scrollbar-color: #1a6e73 rgba(0, 0, 0, 0.05);
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: bubbleIn 0.3s ease;
}

@keyframes bubbleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-bubble.bot {
    background: #fff;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-bubble.user {
    background: #dcf8c6;
    color: #333;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble strong {
    color: #1a6e73;
}

.chatbot-input-area {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px 5px 5px 15px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.2s;
}

.chatbot-input-wrapper:focus-within {
    border-color: #1a6e73;
}

#chatbot-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    padding: 8px 0;
    font-family: inherit;
}

.chatbot-send-btn {
    background: #1a6e73;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}

.chatbot-send-btn:hover {
    background: #0f4f53;
}

.chatbot-send-btn svg {
    width: 20px;
    height: 20px;
}

.chatbot-hint {
    display: block;
    text-align: center;
    color: #888;
    margin-top: 8px;
}

.chatbot-action-area {
    padding: 15px 20px;
    background: #fff;
}

.chatbot-action-btn {
    width: 100%;
    background: #1a6e73;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.chatbot-action-btn:hover {
    background: #0f4f53;
    transform: translateY(-1px);
}

.chatbot-footer {
    padding: 10px 20px;
    background: #f5f5f5;
    text-align: left;
}

.chatbot-back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
}

.chatbot-back-btn:hover {
    color: #1a6e73;
}

/* Responsive for chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .chatbot-messages {
        min-height: 250px;
    }
}