@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;800&family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

.banner-promo-section {
    text-align: center;
    padding: 0.5rem;
    background: linear-gradient(90deg, #007bff, #3f475f); /* Blue to a gray shade */
    font-size: 0.9rem;
    font-weight: 500;
}

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

header {
    padding: 1rem 1rem 0.6rem 1rem;
    border-bottom: 1px solid #333;
    background-color: #000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 80px;
    display: block;
    margin-top: 4px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.hero {
    position: relative;
    text-align: left;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    gap: 2rem;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 0.3;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: #007bff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #aaa;
}

.cta-container {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}

.cta-container input {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 250px;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button.hero-wide {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 500px;
}

.cta-button:hover {
    background-color: #0056b3;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.hero-image {
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.trusted-bar {
    background-color: #111;
    padding: 1.5rem 1rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.trusted-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 600;
}

.trusted-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trusted-bar-item .fa-solid {
    color: #007bff;
    font-size: 1.2rem;
}

.how-it-works {
    padding: 6rem 1rem;
}

.how-it-works .two-column {
    align-items: flex-start;
}

.how-it-works-sticky-text {
    flex: 1;
    position: sticky;
    top: 100px;
    padding-right: 3rem;
}

.how-it-works-sticky-text h2 {
    font-size: 3rem;
    font-weight: 800;
}

.how-it-works-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.card-image {
    width: 100%;
    max-width: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

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

.features {
    padding: 4rem 1rem;
    text-align: left;
}

.features .tag {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features .section-subtitle {
    margin-bottom: 2rem;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    .two-column {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero {
        flex-direction: column;
        padding: 1rem;
        min-height: auto;
    }
    .hero-image, .feature-visual, .sw-visual, .nt-visual {
        max-width: 100%;
        width: 100%;
    }
    .hero-image img, .feature-visual img, .sw-visual img, .nt-visual img {
        width: 100%;
        height: auto;
        display: block;
    }
    .card-image {
        max-width: 100%;
    }
    .cta-container {
        width: 100%;
    }
    .cta-button.hero-wide {
        max-width: 100%;
    }
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

.feature-visual img {
    width: 100%;
    border-radius: 20px;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

/* Stop Wasting Time Section */
.stop-wasting-time {
    padding: 6rem 1rem;
    background-color: #0a0a0a;
}

.sw-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.sw-text p {
    color: #aaa;
    margin-bottom: 2rem;
}

.sw-text ul, .nt-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.sw-text ul li, .nt-text ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.sw-text ul li::before, .nt-text ul li::before {
    content: '✔';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.sw-visual img, .nt-visual img {
    width: 100%;
    border-radius: 20px;
}


/* Non-Techies Section */
.non-techies {
    padding: 6rem 1rem;
}

.nt-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 2rem 3rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    max-width: 500px;
}

.modal-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid #007bff;
}

.cta-button.secondary:hover {
    background-color: #007bff;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 1rem;
    background-color: #0a0a0a;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 1rem 1.5rem;
    color: #aaa;
    line-height: 1.6;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust as needed */
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    75% { transform: rotate(-1deg); }
}

.wiggle {
    animation: wiggle 0.5s ease-in-out;
}


/* Booking Form Page Styles */
.booking-form-section {
    padding: 4rem 1rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #111;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container p {
    text-align: center;
    color: #aaa;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-container .cta-button {
    width: 100%;
    margin-top: 1rem;
}



