/* --- Global Styles & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #007BFF; /* Electric Blue */
    --primary-hover: #0056b3;
    --secondary-color: #1a293f;
    --text-color: #E0E0E0;
    --bg-color: #0d1117;
    --bg-light: #161b22;
    --border-color: #30363d;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; color: #fff; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.bg-light { background-color: var(--bg-light); }

/* --- Buttons & Forms --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary { background-color: var(--primary-color); color: #fff; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-3px); }
.btn-secondary { background: transparent; border: 1px solid var(--primary-color); color: var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: #fff; }

.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-family);
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; text-decoration: none; color: #fff; font-size: 1.5rem; font-weight: 700; }
.logo img { height: 40px; margin-right: 10px; }
.nav-menu { display: flex; list-style: none; }
.nav-menu li { margin: 0 15px; }
.nav-menu a { color: var(--text-color); text-decoration: none; font-weight: 400; transition: color 0.3s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
.header-buttons { display: flex; align-items: center; gap: 15px; }
.hamburger { display: none; cursor: pointer; color: #fff; font-size: 1.5rem; }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--bg-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
}
/* Add more complex background animations here if desired */
.hero-content { animation: fadeIn 1s ease-in-out; }
.hero-headline { font-size: 4rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.hero-description { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }

/* --- Services Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1); }
.service-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }

/* --- Testimonials --- */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.5s; }
.testimonial-slide p { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; }
.testimonial-slide h4 { font-weight: 600; color: var(--primary-color); }

/* --- FAQs --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i { transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 20px 20px; }

/* --- Footer --- */
.footer { background-color: var(--bg-light); padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h4 { margin-bottom: 15px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-color); }
.social-icons a { color: var(--text-color); margin-right: 15px; font-size: 1.2rem; }
.footer-bottom { text-align: center; border-top: 1px solid var(--border-color); padding-top: 20px; }

/* --- WhatsApp Button --- */
.whatsapp-chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
}

/* --- Login Page --- */
.login-body { display: flex; align-items: center; justify-content: center; height: 100vh; }
.login-container { max-width: 400px; width: 100%; }
.login-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.login-box h2 { margin-bottom: 10px; color: #fff; }
.login-box p { margin-bottom: 30px; }
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.btn-google i { margin-right: 10px; color: #DB4437; font-size: 1.2rem; }
.login-footer { margin-top: 20px; }

/* --- Order Form --- */
.order-form { max-width: 700px; margin: 0 auto; background-color: var(--bg-light); padding: 30px; border-radius: 8px; }
.form-step { margin-bottom: 30px; }
.form-step h3 { margin-bottom: 15px; color: var(--primary-color); }
.service-selection label { margin-right: 20px; }

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 1.5rem 0; }
    .hamburger { display: block; }
    .header-buttons { display: none; } /* Hide buttons in mobile nav bar, access from menu or page */
    .hero-headline { font-size: 2.5rem; }
}
/* --- About Page Specifics --- */
.page-header-section {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(45deg, var(--secondary-color), var(--bg-color));
}
.page-header-section h1 {
    font-size: 3rem;
    color: #fff;
}
.page-header-section p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.value-card {
    background-color: var(--bg-color); /* Slightly different from service-card for contrast */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.cta-section {
    background-color: var(--secondary-color);
}
.cta-section h2 {
    font-size: 2.2rem;
    color: #fff;
}
.cta-section p {
    margin: 15px 0 30px;
}
.text-center {
    text-align: center;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        margin-top: 30px;
    }
}
/* --- Contact Page Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3, .contact-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.contact-info p {
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    margin-bottom: 25px;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-list li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    margin-right: 15px;
}

.whatsapp-qr {
    max-width: 180px;
    margin-bottom: 25px;
}

.whatsapp-qr img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.contact-social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.contact-social-icons a:hover {
    color: var(--primary-color);
}

/* --- Responsive Adjustments for Contact Page --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-info {
        margin-top: 40px;
    }
}
/* --- Pricing Page Specifics --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price span {
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: super;
    margin-right: 5px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features-list i {
    width: 20px;
    margin-right: 10px;
}

.features-list .fa-check-circle {
    color: #28a745; /* Green for check */
}

.features-list .fa-times-circle {
    color: #dc3545; /* Red for cross */
}
/* --- Services Page Specifics --- */
.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

/* Alternating layout for every second item */
.service-detail-item:nth-child(even) {
    direction: rtl; /* Reverses the order of grid items */
}

.service-detail-item:nth-child(even) > * {
    direction: ltr; /* Resets text direction for content */
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-detail-content .service-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-detail-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive Adjustments for Services Page */
@media (max-width: 992px) {
    .service-detail-item,
    .service-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr; /* Reset direction for mobile */
    }

    .service-detail-image {
        margin-bottom: 30px;
    }
    
    .service-detail-item:nth-child(even) .service-detail-image {
        order: -1; /* Ensure image is always on top on mobile */
    }
}
/* --- Signup Page Specifics --- */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: var(--border-color);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider:not(:empty)::before {
    margin-right: .25em;
}

.divider:not(:empty)::after {
    margin-left: .25em;
}

.signup-form .form-group {
    margin-bottom: 15px;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}
