/* Basic styles */
:root {
    --primary-color: #206AFF;
    --primary-color-hover: #0142C4;
    --font-family: 'Space Grotesk', sans-serif;
}

body {
    font-family: var(--font-family);
}

/* Global container consistency */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
}




.content-section {
    padding: 4% 0;
}

.contact-section {
    padding: 0 0 4%;
}

/* Adjust padding for smaller screens */
@media (max-width: 991px) {
    .hero-section,
    .content-section,
    .contact-section {
        padding: 2% 0;
    }
}

/* Specific adjustments for contact section on smaller screens */
@media (max-width: 991px) {
    .contact-section {
        padding: 0 0 2%;
    }
}

/* Reset Bootstrap's default gutters */
.row {
    margin: 0;
    padding: 0;
}

[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Header styles */
.sticky-banner {
    background: var(--primary-color);
    height: 60px;
    display: flex;
    align-items: center;
}

.sticky-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
}


.logo {
    height: 25px;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: var(--primary-color);
    padding: 3% 0 0;
}

/* Hero section row spacing */
.hero-section .row:first-child {
    padding: 3% 0;
}

.waitlist-card-container {
    background: var(--primary-color);
}

@media (max-width: 991px) {
    .waitlist-card-container {
        position: relative;
    }
}

/* Waitlist card */
.waitlist-card {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 350px;
    z-index: 1000;
    text-align: center;
}

.waitlist-card .logo {
    height: 25px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features {
    margin: 0 0 1.5rem 0;
    display: inline-block;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.feature-item i {
    color: #1BAA1C;
}

/* Tab styles */
.manufacturer-tabs {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    margin-top: auto;
}

.tab-buttons {
    display: flex;
    position: relative;
    gap: 0;
    width: 100%;
}

.tab-btn {
    background: var(--primary-color-hover);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    position: relative;
    margin-right: -8px;
    flex: 1;
    font-family: var(--font-family);
}

.tab-btn:last-child {
    margin-right: 0;
}

.tab-btn.active {
    background: white !important;
    color: #0142C4 !important;
    z-index: 2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Form Styles */
.contact-form-wrapper {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #CCCCCC;
}

.form-control,
.form-select {
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background-color: #1BAA1C;
    border-color: #1BAA1C;
}

.btn-success:hover {
    background-color: #158715; /* Slightly darker shade for hover */
    border-color: #158715;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.25;
}

.hero-section h3 {
    font-weight: 200;
    line-height: 1.25;
    padding-bottom: 4rem;
    font-size: 1.5rem;
}

.contact-section h3 {
    font-size: 1.5rem;
}

.font-weight-600 {
    font-weight: 600;
}


/* Media queries for mobile */
@media (max-width: 991px) {
    .container {
        padding: 0 4%;
    }
    
    .hero-section,
    .content-section,
    .contact-section {
        padding: 8% 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.25;
    }
    
    .logo {
        height: 20px;
    }
    
    .sticky-banner {
        height: 50px;
    }
    
    .waitlist-card {
        position: relative;
        right: auto;
        top: auto;
        margin: 1rem auto;
        margin-top: 0;
        max-width: 100%;
    }

    .tab-btn {
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
        flex: 1;
        text-align: center;
        margin-right: -8px;
    }

    .hero-section {
        padding: 4% 0 0;
    }
    
    .hero-section .row:first-child {
        padding: 4% 0;
    }
    
    .content-section {
        padding-top: 0;
        margin-top: 0;
    }
    
    .manufacturer-tabs {
        margin-bottom: 0;
    }
    
    .row {
        margin-bottom: 0;
    }
}

/* Hero section */
.hero-section {
    background: var(--primary-color);
    padding: 3% 0 0;
}

/* Content section spacing */
.content-section {
    padding: 3% 0;
}

.content-section .row {
    margin-bottom: 3rem;
}

.content-section .row:last-child {
    margin-bottom: 0;
}

/* Tab styles */
.manufacturer-tabs {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    margin-top: auto;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 4% 0 0;
    }
    
    .hero-section .row:first-child {
        padding: 4% 0;
    }
    
    .content-section {
        padding-top: 2rem;
    }
    
    .content-section .row {
        margin-bottom: 2rem;
    }

    
}

/* Button styling */
.waitlist-card .btn {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal styling */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Checkbox styling */
.form-check-input:checked {
    background-color: #1BAA1C;
    border-color: #1BAA1C;
}

.form-check-input:focus {
    border-color: #1BAA1C;
    box-shadow: 0 0 0 0.25rem rgba(27, 170, 28, 0.25);
}

.content-section h3 {
    font-size: 1.5rem;
}

.content-section p {
    padding-left: 0;
}

.manufacturer-tabs p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

/* Mobile adjustments if needed */
@media (max-width: 991px) {
    .manufacturer-tabs p {
        font-size: 1.125rem;
    }
}

/* Contact link styling */
.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    right: calc(350px + 8rem);
}

.contact-link:hover {
    color: white;
    opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .contact-link {
        position: static;
        margin-left: auto;
    }
}

html {
    scroll-behavior: smooth;
}

#info-panel {
    background: #E9F0FF;
    padding: 24px;
    border-radius: 20px;
    
}


/* Adjust for mobile */
@media (max-width: 991px) {
    .tab-explanation {
        font-size: 1rem;
    }
}

/* Add this to your existing CSS */
.contact-intro {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Adjust for mobile */
@media (max-width: 991px) {
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    p.tab-explanation {
        font-size: 1.125rem; /* Text color */
      
    }
}

p {
    font-size: 1.125rem; /* Adjust font size as needed */
    line-height: 1.5; /* Set line height */
}

/* Specific styles for step paragraphs */
.step-paragraph {
    margin-bottom: 1.5rem; /* Space below each paragraph */
    color: #808080; /* Text color */
}

/* Specific styles for tab explanation paragraphs */
p.tab-explanation {
    color: #206AFF; /* Text color */
  
}

/* Styles for unordered lists within tab explanations */
.tab-explanation + ul {
    color: #206AFF; /* Same text color for the list */

    margin: 0; /* Remove default margin */
    font-size: 1.125rem; /* Adjust font size as needed */
  
}

/* Styles for list items */
.tab-explanation + ul li {
    color: #206AFF; /* Same text color for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}


