/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    margin-bottom: 0.8em;
    color: #2c3e50;
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
}

/* Navigation Bar */
nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 8px;
    vertical-align: middle;
}

.logo-link {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    text-decoration: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1em;
}

.nav-links a:hover {
    color: #007bff;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 0.5em;
    color: white;
    font-weight: 700;
}

.hero-content .sub-headline {
    font-size: 1.3em;
    margin-bottom: 1.8em;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-size: 0.95em;
}

.primary-cta {
    background-color: #ffc107; /* Vibrant yellow */
    color: #333;
    border: 2px solid #ffc107;
}

.primary-cta:hover {
    background-color: #ffca2c;
    border-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Services Section */
.services-section h2 { color: #3498db; }

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #e74c3c; /* Vibrant red */
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.cta-button-secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

/* AD Film & Promotions Section */
.promo-section {
    background-color: #e9ecef; /* Light grey background */
}
.promo-section h2 { color: #28a745; } /* Vibrant green */

.promo-content {
    text-align: center;
}

.promo-content p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promo-platforms {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.platform-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.platform-card i {
    font-size: 3em;
    margin-bottom: 15px;
}

.platform-card.youtube i { color: #FF0000; }
.platform-card.instagram i { color: #C13584; }

.platform-card h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.platform-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Tutorials Section */
.tutorials-section h2 { color: #fd7e14; } /* Vibrant orange */

.tutorial-channels {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.channel-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
    text-align: center;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channel-card i {
    font-size: 3em;
    color: #FF0000; /* YouTube Red */
    margin-bottom: 15px;
}

.channel-card h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}
.channel-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Community Section */
.community-section {
    background-color: #17a2b8; /* Vibrant teal */
    color: white;
}

.community-section h2 { color: white; }

.community-content {
    text-align: center;
}

.community-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.community-content .cta-button {
    background-color: #28a745; /* Green for WhatsApp */
    color: white;
    border: 2px solid #28a745;
}

.community-content .cta-button:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.community-content .cta-button i {
    margin-right: 8px;
}

/* AI Coming Soon Section */
.ai-soon-section {
    padding: 80px 0;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Dark, futuristic gradient */
    color: white;
    text-align: center;
}

.ai-soon-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #61dafb; /* Light blue accent */
}

.ai-soon-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.ai-soon-section .fas.fa-cogs {
    font-size: 4em;
    color: #61dafb;
    margin-bottom: 20px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pricing Section */
.pricing-section {
    background-color: #f0f4f8;
}
.pricing-section h2 { color: #8e44ad; } /* Vibrant purple */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.pricing-category-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    overflow: hidden;
}

.category-header {
    background-color: #3498db;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header i {
    font-size: 1.8em;
    margin-right: 15px;
}

.category-header h3 {
    margin: 0;
    font-size: 1.4em;
    color: white;
}

.toggle-pricing-btn {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.toggle-pricing-btn:hover {
    background-color: rgba(255,255,255,0.4);
}

.pricing-details {
    padding: 25px;
    display: none; /* Hidden by default */
}

.pricing-details.active {
    display: block;
}

.pricing-plan {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.pricing-plan:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-plan h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 8px;
}

.price {
    font-size: 1.8em;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.price .duration {
    font-size: 0.6em;
    font-weight: normal;
    color: #777;
}

.features-note,
.pricing-details ul {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.pricing-details ul {
    list-style: disc;
    padding-left: 20px;
}

.contact-for-custom {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

/* Reviews Section */
.reviews-section h2 { color: #16a085; } /* Vibrant teal/green */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.review-header {
    margin-bottom: 15px;
}

.review-stars {
    color: #f1c40f; /* Yellow for stars */
    font-size: 1.1em;
    margin-bottom: 8px;
}

.review-header h4 {
    font-size: 1.2em;
    margin-bottom: 3px;
}

.reviewer-location {
    font-size: 0.9em;
    color: #777;
}

.review-text {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
    flex-grow: 1;
}

.review-cta-container {
    text-align: center;
    margin-top: 40px;
}

.rate-us-button i {
    margin-right: 8px;
}

/* About Us / CEO Section */
.about-ceo-section {
    background-color: #ecf0f1;
}
.about-ceo-section h2 { color: #2980b9; } /* Blue */

.about-content p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ceo-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 30px;
}

.ceo-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
}

.ceo-info h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 1.1em;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.ceo-message {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
}

/* Contact Section */
.contact-section h2 { color: #d35400; } /* Vibrant orange/brown */

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

.contact-details p {
    font-size: 1.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 12px;
    color: #007bff;
    width: 20px; /* Align icons */
    text-align: center;
}

.contact-form-container h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer Section */
.footer-section {
    background-color: #2c3e50; /* Dark blue/grey */
    color: #ecf0f1;
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.95em;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: #bdc3c7;
    font-size: 0.95em;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #3498db;
    text-decoration: none;
}

.footer-contact p {
    font-size: 0.95em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #bdc3c7;
}

.footer-contact i {
    margin-right: 10px;
    color: #3498db;
}

.footer-social a {
    color: #bdc3c7;
    font-size: 1.6em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.9em;
    color: #95a5a6;
}

/* WhatsApp Chat Button */
.whatsapp-chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 999;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .ceo-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 60px; /* Adjust based on nav height */
        left: 0;
        padding: 10px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content .sub-headline {
        font-size: 1.1em;
    }

    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .promo-platforms,
    .tutorial-channels {
        flex-direction: column;
        align-items: center;
    }
    .platform-card, .channel-card {
        width: 90%;
        max-width: 350px;
    }

    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        margin-top: 20px;
    }
    .footer-social a {
        margin: 0 10px;
    }
}

