/* Base Styles */
:root {
    --primary-color: #b7d12c;
    --text-color: #ffffff;
    --bg-color: #0f0f0f;
    --secondary-bg: #181818;
    --gray-text: #a0a0a0;
    --font-family: 'Inter', 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;
    overflow-x: hidden;
}

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

a {
    color: var(--text-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font-family);
}

/* Updated Header Styles with sticky positioning */
header {
    padding: 25px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 15, 15, 0.95); /* Semi-transparent dark background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(15, 15, 15, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
}

/* Centered Navbar */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 10px 25px;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform-origin: center;
    transition: transform 0.3s ease;
}

nav a:hover::after, nav a.active::after {
    transform: scaleX(1);
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--secondary-bg);
        transition: right 0.3s ease;
        transform: none;
        left: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        height: 100%;
        justify-content: center;
        background: none;
        border-radius: 0;
        padding: 0;
    }
    
    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.chat-bubble {
    position: absolute;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.chat-bubble.sarah {
    background-color: #58a77f;
    left: 5%;
    top: 40%;
    animation: float 3s ease-in-out infinite;
}

.chat-bubble.eliah {
    background-color: #4062d2;
    right: 5%;
    top: 60%;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-text {
    text-align: center;
    margin-bottom: 30px;
}

.hero-text h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
}

.hero-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--gray-text);
}

.waitlist-form {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    max-width: 500px;
}

.waitlist-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: rgba(40, 40, 40, 0.7);
    color: var(--text-color);
    border-radius: 40px 0 0 40px;
    font-size: 16px;
}

.waitlist-form input::placeholder {
    color: var(--gray-text);
}

.waitlist-btn {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 0 40px 40px 0;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.waitlist-btn:hover {
    background-color: #9ab124;
}

/* What You'll Get Section */
.what-you-get {
    padding: 80px 0 40px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(183, 209, 44, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-description {
    font-size: 30px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-text);
    font-style: italic;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--text-color);
    font-weight: 700;
}

/* Slick Side-by-Side Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 500px;
    margin: 60px auto;
    perspective: 1200px;
    background: transparent;
}

.carousel-cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-slide {
    position: absolute;
    width: 80%;
    height: 95%;
    left: 10%;
    top: 2.5%;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

/* Adjust side-by-side positioning for more zoomed in view */
.carousel-slide:nth-child(1) { 
    transform: translateX(0%) translateZ(0); 
    z-index: 4;
}
.carousel-slide:nth-child(2) { 
    transform: translateX(80%) scale(0.85) translateZ(-100px); 
    opacity: 0.5;
    z-index: 3;
}
.carousel-slide:nth-child(3) { 
    transform: translateX(160%) scale(0.7) translateZ(-200px); 
    opacity: 0;
    z-index: 2;
}
.carousel-slide:nth-child(4) { 
    transform: translateX(-80%) scale(0.85) translateZ(-100px); 
    opacity: 0.5;
    z-index: 3;
}

/* Update media queries */
@media (max-width: 992px) {
    .carousel-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Adjust for mobile */
    .carousel-slide:nth-child(2), 
    .carousel-slide:nth-child(3) {
        display: none;
    }
    
    .carousel-slide:nth-child(4) {
        transform: translateX(-60%) scale(0.85) translateZ(-50px); 
    }
}

/* Minimal navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Minimal indicators */
.carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

/* Dashboard card styles */
.dashboard-card {
    background: rgba(25, 25, 25, 0.7);
    width: 95%;
    height: 95%;
    border-radius: 10px;
    padding: 20px;
    overflow: auto;
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .carousel-container {
        height: 420px;
    }
    
    .carousel-slide:nth-child(1), 
    .carousel-slide:nth-child(2), 
    .carousel-slide:nth-child(3), 
    .carousel-slide:nth-child(4) {
        transform: rotateY(0deg) translateZ(350px);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 320px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-slide:nth-child(1), 
    .carousel-slide:nth-child(2), 
    .carousel-slide:nth-child(3), 
    .carousel-slide:nth-child(4) {
        transform: rotateY(0deg) translateZ(250px);
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stat-container {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 20px;
    color: var(--gray-text);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial .logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.testimonial .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial .quote {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.rating {
    color: var(--primary-color);
    font-size: 18px;
}

/* Contact Form Section */
.contact {
    padding: 60px 0;
    text-align: center;
}

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

.contact-description {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-info p {
    color: var(--text-color);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--gray-text);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-text h2 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 24px;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }
    
    .stat-item h3 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    nav ul {
        padding: 6px 15px;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-form input {
        border-radius: 40px;
        margin-bottom: 10px;
    }
    
    .waitlist-btn {
        border-radius: 40px;
    }
    
    .stat-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* Booking Styles */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--secondary-bg));
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.booking-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.booking-description {
    font-size: 22px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calendly-container {
    margin: 50px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.calendly-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.calendly-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    z-index: 10;
}

.booking-contact {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: inline-block;
}

.booking-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.booking-contact a:hover {
    color: #ffffff;
}

.booking-contact a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.booking-contact a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .carousel-track {
        height: 350px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Calendly Integration Styles */
.calendly-container {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-contact {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
}

.booking-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Ensure Calendly widget has a good size on all devices */
@media (max-width: 767px) {
    .calendly-inline-widget {
        height: 600px !important;
    }
}

/* Dashboard Card for Carousel */
.dashboard-card {
    background: rgba(25, 25, 25, 0.9);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    overflow: auto;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5) inset;
}

.dashboard-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #4CAF50);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.integration-badge {
    background: rgba(63, 81, 181, 0.2);
    color: #7986CB;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-title h3 {
    font-size: 26px;
    margin: 0 0 5px 0;
    text-align: center;
}

.time-period {
    color: var(--gray-text);
    font-size: 14px;
    text-align: center;
}

.uptime {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.uptime-value {
    font-size: 18px;
    font-weight: 600;
    color: #4CAF50;
}

.uptime-label {
    font-size: 12px;
    color: var(--gray-text);
}

.metrics-container {
    display: flex;
    gap: 30px;
    margin: 10px 0;
}

.metric {
    flex: 1;
}

.metric-label {
    color: var(--gray-text);
    margin-bottom: 5px;
    font-size: 14px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.metric-value {
    text-align: right;
    font-weight: 600;
}

.connected-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 5px 0;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.platform-item.active i {
    color: #4CAF50;
}

.platform-item.inactive i {
    color: #f44336;
}

.sync-time {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 10px 0;
}

.stat-block {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-block.total {
    background: rgba(33, 33, 66, 0.7);
}

.stat-block.graded {
    background: rgba(76, 175, 80, 0.2);
}

.stat-block.pending {
    background: rgba(255, 193, 7, 0.2);
    position: relative;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-text);
}

.time {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.time-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.time-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.time-metric .icon {
    color: #64B5F6;
    font-size: 18px;
    margin-bottom: 5px;
}

.time-metric .value {
    font-weight: 600;
    font-size: 18px;
}

.time-metric .label {
    color: var(--gray-text);
    font-size: 12px;
}

.sync-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.last-sync, .avg-sync {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.last-sync .label, .avg-sync .label {
    color: var(--gray-text);
    font-size: 12px;
    margin-bottom: 3px;
}

.last-sync .value, .avg-sync .value {
    font-size: 14px;
}

.accuracy-rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accuracy-rate .icon {
    color: #4CAF50;
    font-size: 18px;
    margin-bottom: 5px;
}

.accuracy-rate .value {
    font-weight: 600;
    font-size: 18px;
}

.accuracy-rate .label {
    color: var(--gray-text);
    font-size: 12px;
}

.data-flow {
    margin-top: 15px;
}

.section-title {
    color: var(--gray-text);
    font-size: 16px;
    margin-bottom: 10px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.color.inbound {
    background: #FFB74D;
}

.color.outbound {
    background: #9575CD;
}

.chart-dates {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 5px;
} 