/* PipeQuote Pro Inc. - Brand Styles */
/* Colors: Green #7FD03E, Silver #A0A0A0, Black #000000, White #FFFFFF */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #000;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #7FD03E;
    text-decoration: none;
}

a:hover {
    color: #5fb02e;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #7FD03E;
    color: #000;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #6bc032;
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #7FD03E;
    padding: 14px 32px;
    border: 2px solid #7FD03E;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #7FD03E;
    color: #000;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo-pipe {
    color: #7FD03E;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-pro {
    color: #A0A0A0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #7FD03E;
}

.btn-nav {
    background: #7FD03E;
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #6bc032;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #7FD03E;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #A0A0A0;
    margin-bottom: 40px;
}

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

/* Value Proposition Section */
.value-prop {
    padding: 80px 20px;
    background: #f9f9f9;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #7FD03E;
}

.value-card h3 {
    color: #7FD03E;
}

/* Process Preview Section */
.process-preview {
    padding: 80px 20px;
    background: #000;
    color: #fff;
}

.process-preview h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 280px;
    border: 2px solid #333;
}

.step-number {
    background: #7FD03E;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    color: #7FD03E;
    margin-bottom: 10px;
}

.step p {
    color: #A0A0A0;
    margin: 0;
}

.step-arrow {
    color: #7FD03E;
    font-size: 2rem;
    font-weight: 700;
}

.process-cta {
    text-align: center;
}

/* Credentials Section */
.credentials {
    padding: 80px 20px;
}

.credentials-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.credentials-list {
    list-style: none;
    margin: 20px 0 30px;
}

.credentials-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.credentials-list li:before {
    content: "\2713";
    color: #7FD03E;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.credentials-highlight {
    display: flex;
    justify-content: center;
}

.highlight-box {
    background: #7FD03E;
    color: #000;
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.highlight-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Deliverables Section */
.deliverables {
    padding: 80px 20px;
    background: #f9f9f9;
}

.deliverables h2 {
    text-align: center;
    margin-bottom: 50px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.deliverable-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #7FD03E;
}

.deliverable-item h4 {
    color: #000;
    margin-bottom: 10px;
}

.deliverable-item p {
    margin: 0;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7FD03E 0%, #5fb02e 100%);
    text-align: center;
    color: #000;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-section .btn-primary {
    background: #000;
    color: #7FD03E;
}

.cta-section .btn-primary:hover {
    background: #1a1a1a;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .tagline {
    color: #A0A0A0;
    margin-top: 10px;
}

.footer h4 {
    color: #7FD03E;
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 8px 0;
    color: #ccc;
}

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

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

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #7FD03E;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #A0A0A0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .step-arrow {
        display: none;
    }

    .credentials-content {
        grid-template-columns: 1fr;
    }

    .credentials-highlight {
        order: -1;
    }
}

/* Services Page Specific */
.page-header {
    background: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
}

.page-header p {
    color: #A0A0A0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
}

.services-section {
    padding: 80px 20px;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    color: #7FD03E;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7FD03E;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

/* About Page Specific */
.about-intro {
    padding: 80px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.experience-box {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.experience-box h3 {
    color: #7FD03E;
    margin-bottom: 20px;
}

.qualifications {
    padding: 80px 20px;
    background: #f9f9f9;
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qual-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #7FD03E;
}

/* How It Works Page Specific */
.process-detailed {
    padding: 80px 20px;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.step-marker {
    background: #7FD03E;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-content ul {
    margin-left: 20px;
    color: #555;
}

.step-content li {
    margin: 8px 0;
}

/* Contact Page Specific */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: #7FD03E;
    margin-bottom: 20px;
}

.contact-method {
    margin-bottom: 25px;
}

.contact-method h4 {
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-method a {
    color: #7FD03E;
    font-weight: 600;
}

.contact-form h3 {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #7FD03E;
}

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

@media (max-width: 768px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-step-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-marker {
        margin: 0 auto;
    }
}
