* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: #2c2c2c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2196F3;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/FullCover9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #2196F3;
    color: white;
}

.btn-primary:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Banner Section */
.banner-section {
    padding: 40px 0;
    background: white;
}

.banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.social-circle {
    text-align: center;
}

.social-icons-img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.feature-text {
    text-align: left;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    margin: 80px auto;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.video-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.demo-video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Screenshot Sections */
.screenshot-section {
    margin: 60px 0;
    text-align: center;
}

.screenshot-img {
    width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}

.screenshot-caption {
    font-size: 1.1rem;
    color: #666;
    margin: 20px auto;
    max-width: 700px;
    line-height: 1.6;
}

.feature-text-box {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
}

.feature-text-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.feature-text-box p {
    font-size: 1.1rem;
    color: #666;
}

.screenshot-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
}

.split-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-img-half {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Make images in split sections same height */
.split-section .split-left img,
.split-section .split-right img {
    height: 300px;
    object-fit: contain;
}

.split-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.split-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.split-right p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.split-left h3,
.split-right h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.split-left .screenshot-caption,
.split-right .screenshot-caption {
    margin-top: 15px;
    font-size: 1rem;
}

/* Specific classes for text alignment in split sections */
.split-text-left .split-text-content {
    text-align: left;
    align-items: flex-start;
}

.split-text-right .split-text-content {
    text-align: left;
    align-items: flex-start;
}

.grey-bg {
    background-color: #f5f5f5;
    padding: 60px 40px;
    border-radius: 8px;
}

.screenshot-caption-large {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Notification Section */
.notification-section {
    margin: 80px 0;
    padding: 60px 40px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.notification-image {
    width: 400px;
    height: auto;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    max-width: 400px;
}

.notification-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.notification-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Sneak + Peek Section */
.sneak-peek-section {
    padding: 80px 40px;
    margin: 80px 0;
}

.sneak-peek-header {
    background-image: url('../images/nijabanner.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 80%;
    background-color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-bottom: 50px;
    min-height: 120px;
}

.bot-icon {
    width: 60px;
    height: auto;
}

.sneak-peek-header h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
    text-align: center;
}

.sneak-peek-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sneak-peek-item {
    display: flex;
    flex-direction: column;
}

.sneak-peek-item h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    color: #2c2c2c;
}

.sneak-peek-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sneak-peek-text {
    text-align: left;
}

.situation-label {
    font-weight: bold;
    margin-bottom: 10px;
}

.sneak-peek-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.sneak-img,
.peek-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.peek-img {
    width: 45%;
    max-width: none;
}

/* Home Contact Section */
.home-contact-section {
    background: #2c2c2c;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.home-contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.chatdock-logo-img {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
}

.home-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2196F3;
}

.home-contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.home-contact-content strong {
    color: white;
}

.home-contact-content .btn {
    margin-top: 30px;
}

.download-cta {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
}

.download-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Download Section */
.download-section {
    padding: 80px 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.download-image {
    text-align: center;
}

.ms-store-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.ms-store-badge {
    margin-top: 20px;
}

.download-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #666;
}

.version-info {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #666;
}

.download-note {
    text-align: center;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 30px;
}

.download-note p {
    font-size: 1.1rem;
    color: #666;
}

.download-alternative {
    text-align: center;
    padding: 20px;
}

.download-alternative p {
    color: #666;
}

.download-alternative a {
    color: #2196F3;
    text-decoration: none;
}

.download-alternative a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info a {
    color: #2196F3;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-info strong {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    color: white;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #2196F3;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .download-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .sneak-peek-content {
        gap: 40px;
    }
    
    .sneak-peek-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .notification-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-text {
        text-align: center;
    }

    .social-icons-img {
        max-width: 400px;
    }

    .video-section {
        margin: 60px auto;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-left {
        text-align: center;
    }

    .split-right {
        text-align: center;
    }

    .screenshot-caption-large {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-text h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .video-section h3 {
        font-size: 1.5rem;
    }

    .sneak-peek-section {
        padding: 60px 20px;
    }

    .sneak-peek-header h2 {
        font-size: 2rem;
    }

    .home-contact-section {
        padding: 60px 20px;
    }

    .chatdock-logo-img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .feature-text h2 {
        font-size: 1.5rem;
    }

    .sneak-peek-item h4 {
        font-size: 1.4rem;
    }

    .social-icons-img {
        max-width: 300px;
    }
}

