:root {
    --bg-color: #fdfcfb;
    --text-color: #111111;
    --border-color: #e0e0e0;
    --font-primary: 'Inter', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    padding: 0 4%;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left, .header-right {
    flex: 1;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -1.5px;
    text-transform: lowercase;
}

/* Remove Dropdown Menu CSS */

/* Standalone Form Page */
.get-started-btn {
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.get-started-btn:hover {
    background: transparent;
    color: var(--text-color);
}

.three-step-img {
    width: 75%;
    margin: 0 auto;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.get-started-page {
    display: flex;
    justify-content: center;
    padding: 6rem 2rem;
    background-image: url('Board Hat.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.form-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Keep it from seeping through */
}

.form-header {
    padding: 3rem;
    border-bottom: 1px solid var(--border-color);
    background: #f9f9f9;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 1rem;
    color: #555;
}

.get-started-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 0;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #000;
}

.form-divider {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    line-height: 0.1em;
    margin: 1.5rem 0;
}

.form-divider span {
    background: #fff;
    padding: 0 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #333;
}

/* Layouts */
.image-col {
    border-right: 1px solid var(--border-color);
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    height: calc(100vh - var(--nav-height));
    min-height: 600px;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 500px;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #eee;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-btn {
    display: inline-block;
    background: #fdfcfb;
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.hero-btn:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

/* ===========================
   Feature Image Section
   =========================== */
.feature-image-section {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.full-width-feature-img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Specs Box */
.specs-box {
    background: #f9f9f9;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-top: 2rem;
}

.specs-box h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.spec-item strong {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.spec-item span {
    color: #555;
    margin-bottom: 0.1rem;
}

.pricing-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* Gallery Section */
.gallery-section {
    padding: 2rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.square-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.square-img:hover {
    filter: grayscale(0%);
}

/* ===========================
   Specs Strip (thin bar)
   =========================== */
.specs-strip {
    border-bottom: 1px solid var(--border-color);
    background: #fafafa;
    padding: 1.5rem 5%;
}

.specs-strip-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.specs-strip-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

.specs-strip-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.spec-strip-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.spec-strip-item strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
}

.spec-strip-item span {
    font-size: 0.78rem;
    color: #666;
}

.spec-strip-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ===========================
   Pricing Interactive Section
   ===========================*/
.pricing-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    border-bottom: 1px solid var(--border-color);
}

/* --- Quote Widget (Left) --- */
.quote-col {
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 8%;
    background: var(--bg-color);
}

.quote-widget {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.quote-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    line-height: 1;
}

.quote-slider-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slider-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.slider-wrap {
    position: relative;
    flex: 1;
}

.qty-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: #ccc;
    outline: none;
    cursor: pointer;
}

.qty-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #000;
    transition: transform 0.15s;
}

.qty-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.qty-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #000;
}

.qty-number {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    outline: none;
    border-radius: 0;
}

.qty-number:focus {
    border-color: #000;
}

.quote-card {
    border: 1px solid var(--border-color);
    background: #fff;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
}

.quote-card-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
}

.quote-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-stat:last-child {
    text-align: right;
    align-items: flex-end;
}

.quote-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #777;
}

.quote-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #000;
    line-height: 1;
    transition: all 0.2s;
}

.quote-total {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #000;
    line-height: 1;
    transition: all 0.2s;
}

.quote-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    align-self: center;
}

.quote-cta {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background 0.2s;
}

.quote-cta:hover {
    background: #333;
}

.quote-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

.quote-note a {
    color: #000;
    font-weight: 600;
}

/* --- Accordion (Right) --- */
.accordion-col {
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.accordion-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.accordion-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.accordion {
    width: 100%;
    max-width: 480px;
    text-align: left;
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.15s;
}

.accordion-btn:hover {
    background: #f9f9f9;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tier-range {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
}

.tier-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: #888;
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #999;
    width: 24px;
    text-align: center;
    transition: transform 0.25s, color 0.2s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
    color: #000;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.accordion-item.open .accordion-body {
    max-height: 300px;
    padding: 0 0 1.25rem 0;
}

.accordion-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.accordion-body ul li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 1rem;
    position: relative;
}

.accordion-body ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #bbb;
}

.accordion-body ul li a {
    color: #000;
    font-weight: 600;
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-interactive {
        grid-template-columns: 1fr;
    }

    .quote-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu {
        width: 90vw;
        right: -20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .text-logo {
        font-size: 1.8rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}
