/* ============================================
   RETROTEK TECH SERVICES - Main Stylesheet
   Design: Warm wood textures, teal/orange palette
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #3a2e2e;
    min-height: 100vh;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 200;
}
.skip-link:focus { top: 6px; }

/* Focus styles */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #FF6700;
    outline-offset: 2px;
}

.hidden { display: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
header {
    background-color: #0D3B44;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 24px;
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #F5F0E1;
    padding: 0.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #F5F0E1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF6700;
}

/* Contact Us button in nav */
.nav-cta {
    background-color: #FF6700 !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: 600 !important;
    transition: background-color 0.3s !important;
}
.nav-cta:hover {
    background-color: #e55a00 !important;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #FF6700;
    color: #fff;
}
.btn-primary:hover:not(:disabled) {
    background-color: #e55a00;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: #fff;
    color: #0D3B44;
    border: 2px solid #0D3B44;
}
.btn-outline:hover {
    background-color: #0D3B44;
    color: #F5F0E1;
}

.btn-submit {
    background-color: #FF6700;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem 2rem;
}
.btn-submit:hover:not(:disabled) {
    background-color: #e55a00;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.btn-full { width: 100%; }

.btn-link {
    color: #FF6700;
    font-weight: 600;
    text-decoration: none;
}
.btn-link:hover { text-decoration: underline; }


/* =====================
   HERO SECTION
   Split layout: text left, photo right
   ===================== */
.hero {
    background:
        linear-gradient(135deg, rgba(58, 46, 46, 0.92) 0%, rgba(75, 60, 50, 0.88) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="200" height="200" filter="url(%23n)" opacity="0.08"/></svg>');
    color: #F5F0E1;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #F5F0E1;
}

.hero h1 em {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero-content > p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hero-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}


/* =====================
   SMART TECH SECTION
   Clean light section with centered text
   ===================== */
.smart-tech {
    background-color: #F5F0E1;
    padding: 4rem 0;
    text-align: center;
}

.smart-tech h2 {
    font-size: 2rem;
    color: #0D3B44;
    margin-bottom: 1.2rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.smart-tech p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}


/* =====================
   SERVICES OVERVIEW
   4 cards with illustrated SVG icons
   ===================== */
.services-overview {
    padding: 4rem 0 3rem;
    background-color: #F5F0E1;
    text-align: center;
}

.services-overview h2 {
    font-size: 2rem;
    color: #0D3B44;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #F5F0E1;
    border: 2px solid #d6cdb8;
    padding: 1.8rem 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #FF6700;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 90px;
    height: 90px;
}

.service-card h3 {
    color: #0D3B44;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.service-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.services-cta {
    margin-top: 1rem;
}


/* =====================
   MAINTENANCE SECTION
   Dark wood bg, 2-col: packages left + form right
   ===================== */
.maintenance-section {
    background:
        linear-gradient(135deg, rgba(42, 34, 30, 0.95) 0%, rgba(60, 48, 42, 0.93) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="n2"><feTurbulence type="fractalNoise" baseFrequency="0.5" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="200" height="200" filter="url(%23n2)" opacity="0.06"/></svg>');
    padding: 4rem 0;
    color: #F5F0E1;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.maintenance-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.maintenance-header-icon {
    flex-shrink: 0;
}

.maintenance-header h2 {
    font-size: 1.6rem;
    color: #F5F0E1;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.maintenance-tagline {
    color: #c4b89a;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.packages-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.package-card-home {
    background: rgba(245, 240, 225, 0.1);
    border: 1px solid rgba(245, 240, 225, 0.15);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
}

.package-card-home:hover {
    background: rgba(245, 240, 225, 0.15);
    border-color: #FF6700;
}

.pkg-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(255, 103, 0, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.package-card-home h3 {
    color: #F5F0E1;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.package-card-home p {
    color: #c4b89a;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Service Request Form */
.service-form-container {
    background-color: #F5F0E1;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.service-form-container h2 {
    color: #0D3B44;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-form-container .form-group {
    margin-bottom: 1rem;
}

.service-form-container label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #0D3B44;
    font-size: 0.9rem;
}

.service-form-container input,
.service-form-container select,
.service-form-container textarea {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1.5px solid #d0c9b8;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-form-container input:focus,
.service-form-container select:focus,
.service-form-container textarea:focus {
    border-color: #FF6700;
    box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}

.service-form-container textarea {
    resize: vertical;
}

.service-form-container .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-form-container .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.service-form-container .checkbox-group label {
    margin-bottom: 0;
    flex: 1;
    font-weight: 400;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #555;
}

.service-form-container .checkbox-group a {
    color: #FF6700;
}


/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.testimonials h2 {
    text-align: center;
    color: #0D3B44;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid #FF6700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.testimonial-card::before {
    content: "\201C";
    font-size: 3.5rem;
    color: rgba(255, 103, 0, 0.15);
    position: absolute;
    top: 8px;
    left: 14px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-top: 0.8rem;
    font-size: 0.95rem;
}

.testimonial-author {
    color: #0D3B44;
    font-weight: 600;
    font-size: 0.9rem;
}


/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
    padding: 4rem 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    color: #0D3B44;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background-color: #F5F0E1;
    padding: 1.5rem 1.5rem 1.5rem 3.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-item::before {
    content: "?";
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 26px;
    height: 26px;
    background-color: #FF6700;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.faq-item h3 {
    color: #0D3B44;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.92rem;
}


/* =====================
   CTA CALLBACK
   ===================== */
.cta-callback {
    background: linear-gradient(135deg, #FF6700 0%, #e55a00 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}

.cta-callback h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-callback p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-callback .btn-primary {
    background-color: #0D3B44;
    color: #F5F0E1;
}
.cta-callback .btn-primary:hover {
    background-color: #145a6a;
}


/* =====================
   FOOTER
   ===================== */
footer {
    background:
        linear-gradient(135deg, #0D3B44 0%, #1a4f5a 100%);
    color: #F5F0E1;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #FF6700;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    text-decoration: underline;
}


/* =====================
   PAGE HEADER (subpages)
   ===================== */
.page-header {
    background: linear-gradient(135deg, #0D3B44 0%, #2E8B88 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #F5F0E1;
}

.page-header p {
    color: #F5F0E1;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}


/* =====================
   SERVICES PAGE (Comprehensive)
   ===================== */

/* Diagnostic Fee Banner */
.diagnostic-banner {
    background-color: #0D3B44;
    padding: 2.5rem 0;
}

.diagnostic-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255,103,0,0.12) 0%, rgba(46,139,136,0.1) 100%);
    border: 2px solid rgba(255,103,0,0.4);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.diagnostic-icon { flex-shrink: 0; }

.diagnostic-info h2 {
    color: #FF6700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.diagnostic-info p {
    color: #F5F0E1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service Page Sections */
.services-page-section {
    padding: 3.5rem 0;
    background-color: #F5F0E1;
}

.services-page-section.alt {
    background-color: #fff;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.section-heading-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13,59,68,0.06);
    border-radius: 10px;
    padding: 6px;
}

.section-heading h2 {
    color: #0D3B44;
    font-size: 1.8rem;
    margin: 0;
}

.section-desc {
    color: #555;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Service List Grid */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-list-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF6700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.services-page-section.alt .service-list-card {
    background-color: #F5F0E1;
}

.service-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-list-card h3 {
    color: #0D3B44;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-list-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* How It Works */
.how-it-works {
    background-color: #F5F0E1;
    padding: 3.5rem 0;
    border-top: 3px solid #e0d8c8;
}

.how-it-works h2 {
    text-align: center;
    color: #0D3B44;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FF6700;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #0D3B44;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Business CTA Banner (on services page) */
.business-cta-banner {
    background: linear-gradient(135deg, #0D3B44 0%, #1a5c63 100%);
    padding: 3rem 0;
}

.business-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.business-cta-content h2 {
    color: #F5F0E1;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.business-cta-content p {
    color: #F5F0E1;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.business-cta-content .btn-outline {
    border-color: #F5F0E1;
    color: #F5F0E1;
}
.business-cta-content .btn-outline:hover {
    background-color: #F5F0E1;
    color: #0D3B44;
}

/* =====================
   BUSINESS SERVICES PAGE
   ===================== */
.business-header {
    background: linear-gradient(135deg, #0D3B44 0%, #1a3a22 50%, #2E8B88 100%);
}

.business-intro {
    background-color: #F5F0E1;
    padding: 3rem 0;
}

.business-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-top: 4px solid #FF6700;
}

.business-intro-icon { flex-shrink: 0; padding-top: 0.3rem; }

.business-intro-text h2 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.business-intro-text p {
    color: #555;
    line-height: 1.7;
}

/* Business Plans Section */
.business-plans-section {
    background: linear-gradient(180deg, #2a221e 0%, #3a2e2e 100%);
    padding: 4rem 0;
    color: #F5F0E1;
}

.business-plans-section h2 {
    text-align: center;
    color: #F5F0E1;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.business-plans-section .section-subtitle {
    text-align: center;
    color: #F5F0E1;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Industries Section */
.industries-section {
    background-color: #F5F0E1;
    padding: 3.5rem 0;
}

.industries-section h2 {
    text-align: center;
    color: #0D3B44;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    background-color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #FF6700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.industry-item strong {
    color: #0D3B44;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.industry-item p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}


/* =====================
   OLD SERVICES COMPAT (kept for any lingering refs)
   ===================== */
.services {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.service-detail {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 5px solid #FF6700;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.service-detail:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail h2 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.service-detail p { color: #444; line-height: 1.7; }
.service-detail ul { margin-left: 1.5rem; margin-top: 0.8rem; }
.service-detail ul li { margin-bottom: 0.4rem; color: #555; }


/* =====================
   MAINTENANCE PACKAGES PAGE
   ===================== */
.maintenance-packages {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.maintenance-packages h2 {
    text-align: center;
    margin-bottom: 0.8rem;
    color: #0D3B44;
    font-size: 2rem;
}

.maintenance-packages > .container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #FF6700;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.package-card h3 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.package-card p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 0.95rem;
}

.package-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.package-card li {
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 0.9rem;
}

.package-benefit {
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1.2rem;
    font-style: italic;
    font-size: 0.9rem;
}


/* =====================
   CTA (services page)
   ===================== */
.cta {
    background-color: #0D3B44;
    color: #F5F0E1;
    padding: 3rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}


/* =====================
   ABOUT PAGE
   ===================== */
.about {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.about .container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
}

.about-badge {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.about-badge:hover {
    transform: scale(1.03);
}

.about-content h2 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    margin-top: 2.5rem;
    padding-left: 2.2rem;
    position: relative;
    font-size: 1.4rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 3px;
    background-color: #FF6700;
}

.about-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.about-content ul {
    margin-left: 1.5rem;
    margin-top: 0.8rem;
    background-color: #fff;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    list-style: none;
}

.about-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    color: #444;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}


/* =====================
   TEAM SECTION (ABOUT PAGE)
   ===================== */
.team-section {
    padding: 4rem 0;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    color: #0D3B44;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, rgba(245, 240, 225, 0.4) 0%, rgba(245, 240, 225, 0.2) 100%);
    border: 2px solid #E8DCC8;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #FF6700;
    box-shadow: 0 8px 25px rgba(255, 103, 0, 0.1);
}

.member-info h3 {
    font-size: 1.8rem;
    color: #0D3B44;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.member-credential {
    color: #FF6700;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-bio {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio:last-of-type {
    margin-bottom: 2rem;
}

.member-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #E8DCC8;
}

.highlight-item {
    text-align: center;
}

.highlight-item strong {
    display: block;
    color: #0D3B44;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-item p {
    color: #FF6700;
    font-size: 0.85rem;
    margin: 0;
}


/* =====================
   CONTACT PAGE
   ===================== */
.contact {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-grid {
    display: contents;
}

.contact-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-badge {
    max-width: 120px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info h2 {
    margin-bottom: 0.8rem;
    color: #0D3B44;
    font-size: 1.4rem;
}

.contact-info h3 {
    color: #0D3B44;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.4rem;
    color: #444;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    padding: 1.2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-top: 3px solid #FF6700;
    transition: transform 0.2s;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-item strong {
    display: block;
    color: #0D3B44;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Business hours */
.business-hours {
    margin-top: 1rem;
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6700;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    align-items: center;
}
.hours-row:last-child { margin-bottom: 0; }

.hours-row .day {
    font-weight: 600;
    color: #0D3B44;
    font-size: 0.9rem;
}

.hours-row .time {
    color: #FF6700;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #fff;
    border: 2px solid #FF6700;
    border-radius: 6px;
    color: #FF6700;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #FF6700;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* =====================
   CONTACT/BOOKING FORMS
   ===================== */
.contact-form,
.booking-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #FF6700;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #0D3B44;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1.5px solid #d0c9b8;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6700;
    box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}

.form-group textarea { resize: vertical; }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    flex: 1;
    font-weight: 400;
    font-size: 0.85rem;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    display: block;
}

#form-status {
    margin-top: 0.8rem;
    font-weight: 500;
}

.success { color: #27ae60; }
.error { color: #e74c3c; }
.loading { color: #3498db; }


/* =====================
   PRICING PAGE
   ===================== */
.pricing-intro {
    padding: 2rem 0;
    background-color: #F5F0E1;
}

.pricing-note {
    background-color: #0D3B44;
    color: #F5F0E1;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.pricing-section {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.pricing-section.alt {
    background-color: #fff;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 0.8rem;
    color: #0D3B44;
    font-size: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #FF6700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.pricing-card h3 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6700;
    margin-bottom: 0.3rem;
}

.pricing-card .period {
    font-size: 0.9rem;
    color: #555;
}

.pricing-card .description {
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.9rem;
}

.pricing-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.pricing-card li {
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 0.9rem;
}

/* Plans grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.plan-card.featured {
    border: 2px solid #FF6700;
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.plan-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6700;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    color: #0D3B44;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6700;
    margin-bottom: 0.3rem;
}

.plan-card .period { color: #666; font-size: 0.9rem; }

.plan-card .tagline {
    margin: 0.8rem 0;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.plan-card ul {
    text-align: left;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.plan-card li {
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 0.9rem;
}

.plan-card .plan-note {
    background-color: #0D3B44;
    color: #F5F0E1;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 4rem 0;
    background-color: #F5F0E1;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0D3B44;
}


/* =====================
   LEGAL PAGES
   ===================== */
.legal-content {
    padding: 3rem 0;
    background-color: #F5F0E1;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #0D3B44;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.legal-content h3 {
    color: #0D3B44;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #444;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
    color: #444;
}


/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-photo {
        height: 300px;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        padding-left: 0;
    }

    .about-content h2::before {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .member-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .social-link span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0D3B44;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        display: none;
        padding: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(245,240,225,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-cta {
        margin: 0.5rem 1rem;
        text-align: center;
        border-radius: 5px;
        display: block !important;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-photo {
        height: 260px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-grid-home {
        grid-template-columns: 1fr;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }

    .contact-form, .booking-form {
        order: -1;
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-badge {
        max-width: 200px;
    }

    .diagnostic-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .diagnostic-info h2 {
        font-size: 1.5rem;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .business-intro-card {
        flex-direction: column;
        text-align: center;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 2.5rem 0 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 1.4rem;
    }

    .diagnostic-info h2 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .member-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        text-align: left;
        padding-bottom: 1rem;
        border-bottom: 1px solid #E8DCC8;
    }

    .highlight-item:last-child {
        border-bottom: none;
    }
}
