/* Header and Navigation Container */
.header-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Header Styles */
.header {
    background-color: #1e4a3f;
    color: white;
    padding: 15px 0;
}

.header-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.title-section {
    flex: 1;
    text-align: center;
    padding: 15px 0;
}

.appointment-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-section .logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

.logo-section .logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}

.title-section h1 {
    font-size: 2em;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    font-weight: 600;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2em;
    font-style: italic;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    font-weight: 400;
    opacity: 0.95;
}

.request-btn {
    background: linear-gradient(45deg, #65cc9c, #72e8ff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.request-btn:hover {
    background: linear-gradient(45deg, #72e8ff, #65cc9c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Navigation Styles */
.navigation {
    background: linear-gradient(135deg, #2e7e5e, #217a91);
    padding: 0;
}

.nav-menu {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255,255,255,0.3);
    font-weight: bold;
}

/* Main Content Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 230px;
    margin: 0;
}

.main-container {
    max-width: 95%;
    margin: 20px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
    align-items: stretch;
}

.left-content,
.right-content {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#packages-pricing-container .left-content {
    flex: 2;
}

#packages-pricing-container .right-content {
    flex: 1;
}

/* Section Styles */
.welcome-section,
.about-section,
.services-section,
.gallery-section {
    margin-bottom: 35px;
}

.welcome-section h2,
.about-section h2,
.about-section h3,
.services-section h2,
.gallery-section h2,
.intro-section h2,
.pricing-section h2,
.custom-options-section h2,
.features-section h2,
.contact-pricing-section h2,
.specs-section h2,
.pricing-info-section h2,
.parts-category h2,
.custom-services-section h2,
.installation-note h2,
.contact-form-section h2 {
    color: #1e4a3f;
    border-bottom: 3px solid #72e8ff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.welcome-section p,
.about-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.about-section ul {
    background: #f8f9fa;
    padding: 25px 25px 25px 45px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 6px solid #65cc9c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-section li {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.about-section li::marker {
    color: #65cc9c;
}

.services-description p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 15px;
}

.service-item {
    text-align: center;
    transition: all 0.3s ease;
}

.service-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-image {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-item:hover .service-image {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(114, 232, 255, 0.4);
    border: 3px solid #72e8ff;
}

.service-item h3 {
    margin-bottom: 10px;
    margin-top: 0;
    color: #65cc9c;
    font-size: 1.1em;
}

.gallery-section-full {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin: 0;
}

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

.gallery-section-full h2 {
    text-align: center;
    margin-bottom: 30px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.gallery-image {
    max-height: 200px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
}

.gallery-image:hover {
    transform: scale(1.2);
}

/* Pricing Page Styles */
.intro-section,
.pricing-section,
.custom-options-section,
.features-section,
.contact-pricing-section,
.specs-section,
.pricing-info-section {
    margin-bottom: 30px;
}

.pricing-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-table th {
    background: linear-gradient(135deg, #1e4a3f, #2c5f52);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
    text-align: center;
    line-height: 1.6;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-table tr:hover {
    background-color: #e8f4f1;
}

.package-diagram {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    margin: 5px auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.package-diagram:hover {
    transform: scale(1.5);
    z-index: 10;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.custom-option {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #72e8ff;
}

.custom-option h3 {
    color: #1e4a3f;
    margin-top: 0;
    margin-bottom: 10px;
}

.custom-option p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.custom-option ul {
    margin: 10px 0;
    padding-left: 20px;
}

.custom-option li {
    margin-bottom: 5px;
}

.features-list {
    background: #f8f9fa;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #65cc9c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.features-list li {
    margin-bottom: 4px;
    color: #444;
    line-height: 1.6;
}

.contact-pricing-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e4a3f;
    text-align: center;
}

.contact-pricing-content p {
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Sure-Step Page Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 20px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #72e8ff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #1e4a3f;
    margin-top: 0;
    margin-bottom: 10px;
}

.specs-container {
    background: #f8f9fa;
    padding: 5px 20px;
    border-radius: 8px;
    border-left: 4px solid #65cc9c;
    margin: 15px 0;
}

.spec-item {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.spec-item:last-child {
    border-bottom: none;
}

.pricing-highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #72e8ff;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-highlight p {
    margin: 5px 0;
    font-size: 1.1em;
}

.pricing-link {
    color: #1e4a3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.pricing-link:hover {
    text-decoration: underline;
}

.spec-colors-inline {
    display: flex;
    gap: 15px;
    align-items: center;
}

.color-option-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-option-inline span {
    font-weight: normal;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 3px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.color-swatch.grey {
    background-color: #808080;
}

.color-swatch.sand {
    background-color: #d2b48c;
}

/* Parts & Accessories Page Styles */
.parts-category {
    margin-bottom: 30px;
}

.parts-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.part-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.3s ease;
}

.part-item:last-child {
    border-bottom: none;
}

.part-item:hover {
    background-color: #f8f9fa;
}

.part-name {
    font-weight: 500;
    color: #333;
}

.part-price {
    font-weight: 600;
    color: #1e4a3f;
    font-size: 1.1em;
}

.custom-services-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #72e8ff;
}

.contact-highlight {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-highlight p {
    margin: 2px 0;
    font-size: 1.1em;
}

.installation-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #65cc9c;
}

.installation-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.parts-gallery-section {
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.sliding-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 20px 0;
}

.sliding-track {
    display: flex;
    width: 3600px;
    animation: slide 20s linear infinite;
}

.sliding-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.sliding-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(114, 232, 255, 0.4);
    border: 3px solid #72e8ff;
    animation-play-state: paused;
}

.sliding-banner:hover .sliding-track {
    animation-play-state: paused;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-1800px);
    }
}

/* Contact Page Styles */
.contact-main-container {
    max-width: 90%;
    margin: 20px auto;
    padding: 0 20px;
}

.contact-form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-form-section h2 {
    color: #1e4a3f;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 3px solid #72e8ff;
    padding-bottom: 10px;
}

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

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

.form-group.message-group {
    margin-top: 10px;
}

.form-group.message-group textarea {
    min-height: 150px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1e4a3f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #72e8ff;
    box-shadow: 0 0 5px rgba(114, 232, 255, 0.3);
}

.form-group select {
    background-color: white;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.submit-btn,
.reset-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn {
    background: linear-gradient(45deg, #65cc9c, #72e8ff);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background: linear-gradient(45deg, #72e8ff, #65cc9c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reset-btn {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.reset-btn:hover {
    background: linear-gradient(45deg, #7f8c8d, #95a5a6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Footer Styles */
.footer {
    background-color: #1e4a3f;
    color: white;
    padding: 40px 0 0 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 0px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
    width: fit-content;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: auto;
    height: 50px;
    transition: all 0.3s ease;
    display: block;
}

.social-icon:hover {
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
}
.footer-bottom p{
    margin: 0;
}

/* Warranty Popup Styles */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

#warranty-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2001;
    max-width: 800px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
}

.popup-header {
    background: linear-gradient(135deg, #1e4a3f, #2c5f52);
    color: white;
    padding: 8px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.8em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#close-warranty {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

#close-warranty:hover {
    color: #72e8ff;
    transform: scale(1.1);
}

.popup-content {
    padding: 15px 25px;
    line-height: 1.6;
    color: #333;
}

.warranty-section {
    margin-bottom: 15px;
}

.warranty-section h3 {
    color: #1e4a3f;
    border-bottom: 2px solid #72e8ff;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.warranty-section h4 {
    color: #1e4a3f;
    margin: 5px 0 8px 0;
    font-size: 1.1em;
}

.warranty-section p {
    margin-bottom: 12px;
    text-align: justify;
}

.warranty-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

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

.warranty-highlight {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #65cc9c;
    margin: 10px 0;
}

.warranty-highlight h4 {
    margin: 0 0 5px 0;
    color: #1e4a3f;
}

.warranty-contact {
    background: #e8f4f1;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
}

.warranty-contact h4 {
    color: #1e4a3f;
    margin: 0 0 8px 0;
}

.warranty-contact p {
    margin: 5px 0;
    font-weight: 600;
}