Of course. I can fix those issues for you. The vertical alignment in the navigation bar and the text color on the button can both be adjusted by making a couple of small changes to your CSS.

Here are the two changes I'll make:

1.  I'll add `align-items: center;` to your `.nav-links` style. This will ensure all navigation items, including the text links and the taller "Get a Quote" button, are perfectly centered vertically with each other.
2.  I'll add a new, more specific CSS rule to set the color of the "Get a Quote" button text to the theme's dark color (`#2c3e50`), which is nearly black. This overrides the default link color that was being applied incorrectly.

-----

## Updated CSS

Here is the complete `style.css` file with the corrections applied. You can replace your existing stylesheet with this code.

```css
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #2c3e50; /* Dark Blue/Charcoal */
    --accent-color: #e74c3c; /* Reddish accent for contrast */
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --status-success: #28a745;
    --status-danger: #dc3545;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding-top: 50px; /* Added to prevent content from being hidden by fixed header */
}

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

/* Header */
header {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: background-color var(--transition-speed) ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo .accent-text {
    color: var(--text-light);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center; /* FIX: Vertically aligns nav items */
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
    text-align: center;
    cursor: pointer;
}

.btn:disabled {
    background-color: #ccc;
    border-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}


.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

/* FIX: Sets correct text color for the quote button in the nav */
.nav-links .btn-primary {
    color: var(--secondary-color);
}


.btn-primary:hover:not(:disabled) {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

.mobile-nav-links li a.btn {
    font-size: 1.4rem;
    padding: 15px 30px;
}

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

body.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000 100%);
    color: var(--text-light);
    padding: 150px 0 100px;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 80vh;
    justify-content: center;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sections General */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding-bottom: 100px;
}

.service-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-item-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 50%;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-content .read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--primary-color);
    margin-top: 10px;
}

.service-content .read-more:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.read-more i {
    margin-left: 8px;
    transition: margin-left var(--transition-speed) ease;
}

.read-more:hover i {
    margin-left: 12px;
}

/* Form Styling */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-group select:active {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background-image: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232c3e50%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8em;
    padding-right: 2.5rem;
}

.form-group select:hover {
    border-color: var(--secondary-color);
}

.btn-submit {
    width: auto;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copy-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.copy-phone:hover {
    text-decoration: underline;
}

.copy-phone .fa-copy {
    margin-left: 5px;
}

.copy-feedback {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Bedliners Page Specific */
.container.bedliner-container {
  max-width: 800px;
  padding: 20px;
}

.page-banner {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

/* Bedliners Page Specific */
.container.bedliner-container {
  max-width: 800px;
  padding: 20px;
}

.page-banner {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

/* THIS IS THE NEW, MORE ROBUST FIX */
.bedliner-image-holder {
    max-width: 600px;
    max-height: 450px; /* This now limits the height */
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bedliner-image-holder img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%; /* Ensures image fits in the container */
    object-fit: contain;
}


.image-holder {
  text-align: center;
  margin: 40px auto;
  max-width: 600px; 
}
.image-holder img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
}
.image-holder img:hover {
  transform: scale(1.02);
}

.intro h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.image-holder {
  text-align: center;
  margin: 40px auto; /* Center the holder */
  max-width: 600px; /* Set a max-width for the image holder */
}
.image-holder img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
}
.image-holder img:hover {
  transform: scale(1.02);
}

.intro h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.intro p {
  font-size: 1.1rem;
  color: #666;
}

.section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  padding: 30px;
  border-top: 5px solid var(--primary-color);
}

.section h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section ul {
  list-style: disc inside;
  margin-top: 10px;
}

.section ul li {
  margin-bottom: 8px;
}

.section h4 {
  margin-top: 20px;
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.polyurea-section {
    display: flex;
    flex-direction: column; /* Always stack content and image */
    align-items: center;
    gap: 40px;
    text-align: left;
    background-color: #fff; /* Ensure background is white */
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 30px;
    border-top: 5px solid var(--primary-color);
}

.polyurea-content {
    width: 100%; /* Take full width in column layout */
    min-width: auto; /* Remove min-width constraint */
}

.polyurea-image {
    width: 100%; /* Take full width in column layout */
    max-width: 600px; /* Limit image width for larger screens */
    margin-top: 20px; /* Add some space between content and image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.polyurea-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* CTA Button Styling */
.cta {
    margin: 40px 0 20px;
    text-align: center;
}

/* --- NEW & UPDATED STYLES --- */

/* Availability Status under Time Selector */
.availability-status {
    margin-top: 10px;
    font-weight: 600;
    text-align: left;
    height: 1.2em; /* Reserve space to prevent layout shift */
    transition: color 0.3s ease;
}

.availability-status.available {
    color: var(--status-success);
}

.availability-status.unavailable {
    color: var(--status-danger);
}

/* General Message Box Styles */
.message {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  display: none; /* Hide by default */
}

.message.success, .message.error {
    display: block; /* Show only when class is applied */
}

.message.success {
  background-color: #e9f7ef;
  color: var(--status-success);
  border: 1px solid var(--status-success);
}

.message.error {
  background-color: #fceeed;
  color: var(--status-danger);
  border: 1px solid var(--status-danger);
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal-button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.close-modal-button:hover {
    opacity: 1;
}

.modal-content {
    padding: 30px 25px;
}

.success-icon {
    font-size: 4rem;
    color: var(--status-success);
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.booking-summary {
    background: var(--light-bg);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.booking-summary h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.booking-summary p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.booking-summary p:last-child {
    margin-bottom: 0;
}

/* --- New CTA Section Style --- */
.cta-section {
    background: var(--secondary-color); /* Dark background for contrast */
    color: var(--text-light);
    padding: 60px 30px;
    border-radius: 8px;
    margin: 80px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section h2 {
    color: var(--primary-color); /* Yellow heading text */
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .polyurea-section {
    flex-direction: column;
}
.polyurea-image {
    max-width: 100%; /* Allows image to be full width on mobile */
    margin-top: 20px;
}
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
    
    .service-item,
    .service-item-right {
        flex-direction: column;
    }

    .service-item .service-image,
    .service-item-right .service-image {
        min-width: 100%;
        max-height: 300px;
        overflow: hidden;
    }

    .service-item-right {
        flex-direction: column;
    }

    .service-content {
        text-align: center;
    }

    .page-banner h1 { font-size: 2rem; }
    .intro h2 { font-size: 1.5rem; }
    .section { padding: 20px; }
    .image-holder { margin: 30px 0; }
}
