/* Flat Pack Assemblers - Exact Match to flatpackassemblers.com */

/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

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

/* CSS Variables - Exact Colors from flatpackassemblers.com */
:root {
    --primary-orange: #FF6B00;
    --text-dark: #212529;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --bg-footer-dark: #333333;
    --border-gray: #DEE2E6;
    --logo-green: #4CAF50;
}

/* Body Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header Styles */
.site-header {
    background-color: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

/* Breadcrumb Container */
.breadcrumb-container {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-gray);
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    flex: 1;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Location/Supplier Tracker */
.location-tracker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.tracker-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.tracker-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.tracker-link.update-link {
    color: var(--primary-orange);
    font-weight: 700;
}

.tracker-link.update-link:hover {
    text-decoration: underline;
}

.tracker-separator {
    color: #6c757d;
}

/* Mobile Tracker in Menu */
.mobile-tracker {
    display: none;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-gray);
    font-size: 14px;
}

.mobile-tracker .tracker-link {
    display: inline-block;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-tracker {
        display: block;
    }
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto', Arial, sans-serif;
    display: block;
}

.logo a span {
    text-transform: none;
    font-weight: 400;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

/* Navigation Styles */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

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

/* Submenu Styles */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    border: 1px solid var(--border-gray);
    margin: 0;
    padding: 0;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 400;
}

.submenu li a:hover {
    background-color: var(--bg-light-gray);
    color: var(--primary-orange);
}

/* Main Content */
.site-content {
    min-height: 60vh;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-content h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.page-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.page-content h4 {
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #E56000;
}

.btn-secondary {
    background-color: #6C757D;
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: #5A6268;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
}

/* Hero Section */
.hero {
    background-color: var(--bg-light-gray);
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* Card Styles */
.card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 24px;
}

.card h3 {
    margin-top: 0;
    color: var(--text-dark);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Styles - Exact Match */
.site-footer {
    background-color: var(--bg-footer-dark);
    color: var(--text-white);
    padding: 64px 0 32px;
    margin-top: 60px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-logo .logo-amigos {
    color: var(--logo-green);
}

.footer-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #555555;
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-orange);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-contact {
    color: #CCCCCC;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #555555;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-legal .separator {
    color: #666666;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('/assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Quick Quote Box */
.quick-quote-box {
    background-color: var(--bg-light-gray);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quick-quote-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 0;
}

.quick-quote-box p {
    margin-bottom: 20px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background-color: var(--bg-light-gray);
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('/assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Quote Form Section */
.quote-form-section {
    padding: 60px 20px;
}

.form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.quote-form .form-group {
    margin-bottom: 24px;
}

.quote-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.quote-form textarea {
    resize: vertical;
    min-height: 150px;
}

.quote-form small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box {
    background-color: var(--bg-light-gray);
    padding: 24px;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 16px;
}

.info-box h4 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 12px;
}

.info-box ul {
    margin: 12px 0;
    padding-left: 24px;
}

.info-box ol {
    margin: 12px 0;
    padding-left: 24px;
}

.info-box li {
    margin-bottom: 8px;
}

.info-box.highlight {
    background-color: #FFF5E6;
    border-left: 4px solid var(--primary-orange);
}

.sample-text {
    background-color: white;
    padding: 16px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.sample-text p {
    margin: 8px 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-light-gray);
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #666;
}

.btn-secondary {
    background-color: #333;
    color: white;
}

.btn-secondary:hover {
    background-color: #555;
}

/* Pricing Components */
.pricing-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.component-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.component-card h4 {
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.formula-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    margin: 20px 0;
    font-size: 1.1rem;
}

.price-table {
    margin: 24px 0;
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.price-table th {
    background: var(--primary-orange);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.price-table tr:hover {
    background: #f8f9fa;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 24px;
}

.pricing-example {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    max-width: 600px;
}

.pricing-example h4 {
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.example-breakdown {
    background: white;
    padding: 24px;
    border-radius: 8px;
}

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

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

.example-item.subtotal {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #e0e0e0;
    font-weight: 500;
}

.example-item.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--primary-orange);
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.item-name {
    flex: 1;
}

.item-price {
    font-weight: 600;
    margin-left: 20px;
}

.example-item.minimum {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 3px solid var(--primary-orange);
    background: #fff3e0;
    padding: 16px;
    margin-left: -12px;
    margin-right: -12px;
    font-size: 1.15rem;
}

/* Calculation Steps */
.calculation-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.calc-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.formula {
    background: #f8f9fa;
    padding: 12px 16px;
    border-left: 4px solid var(--primary-orange);
    margin-top: 12px;
    font-family: 'Courier New', monospace;
}

.final-formula {
    background: white;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin-top: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.big-formula {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin: 16px 0;
}

/* Example Grid */
.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

@media (max-width: 768px) {
    .example-grid {
        grid-template-columns: 1fr;
    }
}

/* Info and Minimum Charge Boxes */
.info-box, .minimum-charge-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.minimum-charge-box {
    background: #fff3e0;
    border-left: 4px solid var(--primary-orange);
}

.minimum-example {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-orange);
}

.benefit-card h4 {
    color: var(--primary-orange);
    margin-bottom: 12px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #FF6B00 0%, #E56000 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    margin: 48px 0;
}

.cta-box h2 {
    color: white;
    margin-top: 0;
}

.cta-box p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cta-box .btn {
    background: white;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.cta-box .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Response Grid */
.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.response-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-orange);
}

.response-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.response-time {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 12px 0;
}

/* Business Info Grid */
.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.info-item h4 {
    color: var(--primary-orange);
    margin-bottom: 8px;
}

/* Commercial Benefits */
.commercial-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.benefit-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    margin-bottom: 12px;
}

.commercial-cta {
    background: #fff3e0;
    padding: 20px;
    border-left: 4px solid var(--primary-orange);
    border-radius: 4px;
    margin-top: 32px;
    font-weight: 500;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.requirement-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    padding-top: 60px;
}

.req-number {
    position: absolute;
    top: -20px;
    left: 24px;
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.requirement-card h4 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.requirement-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 32px auto;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: var(--primary-orange);
    margin-bottom: 12px;
}

/* Footer Quote Form */
.footer-quote-section {
    background-color: var(--bg-light-gray);
    padding: 60px 20px;
}

.footer-quote-layout {
    max-width: 900px;
    margin: 0 auto;
}

.footer-quote-intro {
    text-align: center;
    margin-bottom: 40px;
}

.footer-quote-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.footer-quote-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.footer-quote-form .form-group {
    margin-bottom: 24px;
}

.footer-quote-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.footer-quote-form input[type="text"],
.footer-quote-form input[type="tel"],
.footer-quote-form input[type="email"],
.footer-quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.footer-quote-form input:focus,
.footer-quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.footer-quote-form textarea {
    resize: vertical;
}

.radio-group-inline {
    display: flex;
    gap: 30px;
}

.form-submit {
    text-align: center;
}

.form-note {
    margin-top: 12px;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-quote-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group-inline {
        flex-direction: column;
        gap: 12px;
    }
}

/* Page Video Section */
.page-video-section {
    padding: 60px 20px;
    background-color: white;
}

.video-intro {
    text-align: center;
    margin-bottom: 30px;
}

.video-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* How It Works Steps */
.how-it-works-steps {
    padding: 60px 20px;
    background-color: var(--bg-light-gray);
}

.steps-intro {
    text-align: center;
    margin-bottom: 50px;
}

.steps-intro h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-card ul {
    margin-top: 16px;
    padding-left: 24px;
}

.step-card li {
    margin-bottom: 8px;
}

/* What We Need Section */
.what-we-need-section {
    padding: 60px 20px;
    background-color: white;
}

.what-we-need-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.need-to-know-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.need-card {
    background-color: var(--bg-light-gray);
    padding: 30px;
    border-radius: 8px;
}

.need-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.need-card ul {
    margin-top: 12px;
    padding-left: 24px;
}

.need-card li {
    margin-bottom: 8px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background-color: var(--bg-light-gray);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-orange);
}

/* Featured Image Section */
.featured-image-section {
    padding: 40px 20px;
    background-color: white;
}

img.featured-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 20px auto;
    border-radius: 8px;
}

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

.featured-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Image Gallery */
.image-gallery {
    padding: 40px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-caption {
    padding: 16px;
    background-color: white;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: #666;
}

/* Homepage Sections */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.reason-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.reason-card p {
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Service Cards */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-light-gray);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.process-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
    color: #666;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-item blockquote {
    margin: 0;
}

.testimonial-item p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-item footer {
    font-style: normal;
    font-weight: 500;
    color: #666;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.intro-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }

.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }

.p-1 { padding: 16px; }
.p-2 { padding: 32px; }
.p-3 { padding: 48px; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .hamburger {
        display: flex;
    }
    
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-top: 1px solid var(--border-gray);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
        margin-top: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .primary-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-menu > li > a {
        padding: 16px 20px;
    }
    
    .submenu {
        position: static;
        display: none;
        background-color: var(--bg-light-gray);
        box-shadow: none;
        border: none;
    }
    
    .has-submenu.active .submenu {
        display: block;
    }
    
    .submenu li a {
        padding: 12px 20px 12px 40px;
    }
    
    .submenu-toggle {
        display: inline-block;
        padding: 16px 20px;
        cursor: pointer;
        color: var(--text-dark);
        font-size: 14px;
        position: absolute;
        right: 0;
        top: 0;
        transition: transform 0.3s;
    }
    
    .has-submenu {
        position: relative;
    }
    
    .has-submenu.active .submenu-toggle {
        transform: rotate(180deg);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .submenu-toggle {
        display: none !important;
    }
}


/* ==========================================
   NEW COMPONENTS CSS - Services Page
   ========================================== */

/* Service Cards Grid */
.service-cards-grid {
    padding: 60px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: #ccc;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 8px;
    font-size: 1.35rem;
    font-weight: 700;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-scope, .service-exclusions {
    margin: 25px 0 15px 0;
}

.service-scope h4 {
    color: #28a745;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-exclusions h4 {
    color: #dc3545;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-scope ul, .service-exclusions ul {
    list-style: none;
    padding: 0;
}

.service-scope li, .service-exclusions li {
    padding: 6px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-scope li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.service-exclusions li::before {
    content: "✗ ";
    color: #dc3545;
    font-weight: bold;
    margin-right: 5px;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

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

/* Service Inclusions/Exclusions */
.service-inclusions-exclusions {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.inclusions-box, .exclusions-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.inclusions-box h3 {
    color: #28a745;
    margin-bottom: 20px;
}

.exclusions-box h3 {
    color: #dc3545;
    margin-bottom: 20px;
}

.inclusions-box ul, .exclusions-box ul {
    list-style: none;
    padding: 0;
}

.inclusions-box ul li, .exclusions-box ul li {
    padding: 8px 0;
}

.inclusions-box ul li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.exclusions-box ul li::before {
    content: "✗ ";
    color: #dc3545;
    font-weight: bold;
    margin-right: 8px;
}

/* Policy Snippets */
.policy-snippet {
    background: #fffbf0;
    border-left: 4px solid var(--primary-orange);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.policy-snippet h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.policy-snippet p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-snippet a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.policy-snippet a:hover {
    text-decoration: underline;
}

/* Pricing Method Teaser */
.pricing-method-teaser {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.pricing-formula {
    background: #fff;
    border: 1px solid var(--primary-orange);
    border-radius: 8px;
    padding: 30px 40px;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}

.pricing-formula code {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

/* FAQ Accordion */
.faq-accordion {
    padding: 60px 0;
    background: #fff;
}

.faq-accordion .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0 0 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}


/* Service Definition Component */
.service-definition {
    padding: 40px 0;
    background: #f8f9fa;
}

.service-definition-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-definition-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

/* Proof Badges Component */
.proof-badges {
    padding: 60px 0;
    background: #fff;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.badge-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.badge-item p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Process Steps Component */
.process-steps {
    padding: 60px 0;
    background: #fff;
}

.process-steps.teaser {
    background: #f8f9fa;
}

.process-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .service-definition-text {
        font-size: 1rem;
    }
}


/* Area Hub Component */
.area-hub {
    padding: 60px 0;
    background: #fff;
}

.area-hub-intro {
    text-align: center;
    margin-bottom: 50px;
}

.area-hub-intro h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.area-hub-intro p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

.area-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.area-name {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.area-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.area-link:hover {
    color: #e55a25;
    text-decoration: underline;
}

.coverage-note {
    background: #fffbf0;
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    border-radius: 4px;
    text-align: center;
}

.coverage-note p {
    margin: 0;
    color: #666;
    font-size: 1.05em;
}

.coverage-note strong {
    color: #333;
}

@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .area-hub-intro h2 {
        font-size: 2em;
    }
}


/* Supplier Components */

/* Supplier Directory Filters */
.supplier-directory-filters {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.filters-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box .form-control {
    flex: 1;
}

.filter-info {
    text-align: center;
    color: #666;
    font-size: 0.95em;
}

.filter-info p {
    margin: 0;
}

/* Supplier Prominent Grid */
.supplier-prominent-grid {
    padding: 60px 0;
    background: #fff;
}

.prominent-intro {
    text-align: center;
    margin-bottom: 50px;
}

.prominent-intro h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.prominent-intro p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.supplier-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

.supplier-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.supplier-name {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.supplier-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.supplier-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.supplier-link:hover {
    color: #e55a25;
    text-decoration: underline;
}

/* Supplier A-Z Index */
.supplier-atoz-index {
    padding: 60px 0;
    background: #f8f9fa;
}

.atoz-intro {
    text-align: center;
    margin-bottom: 40px;
}

.atoz-intro h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.atoz-intro p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.letter-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.letter-link.active {
    background: #ff6b35;
    color: #fff;
}

.letter-link.active:hover {
    background: #e55a25;
}

.letter-link.inactive {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.atoz-lists {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.letter-section {
    margin-bottom: 40px;
}

.letter-section:last-child {
    margin-bottom: 0;
}

.letter-heading {
    font-size: 2em;
    color: #ff6b35;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.supplier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.supplier-list li {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.supplier-list li:hover {
    background: #e9ecef;
}

.supplier-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.supplier-list li a:hover {
    color: #ff6b35;
}

@media (max-width: 768px) {
    .suppliers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .prominent-intro h2,
    .atoz-intro h2 {
        font-size: 2em;
    }
    
    .alphabet-nav {
        gap: 5px;
    }
    
    .letter-link {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9em;
    }
    
    .supplier-list {
        grid-template-columns: 1fr;
    }
    
    .atoz-lists {
        padding: 20px;
    }
}


/* Trust & Proof Components */

/* Testimonial Showcase */
.testimonial-showcase {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #ddd;
    font-size: 24px;
    margin-right: 2px;
}

.testimonial-rating .star.filled {
    color: #ffa500;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5px;
}

.testimonial-location,
.testimonial-supplier,
.testimonial-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 20px;
    background-color: white;
}

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

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.trust-badge:hover {
    border-color: #2c5aa0;
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.badge-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.badge-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4278 100%);
    color: white;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    margin-bottom: 30px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.guarantee-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-points li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.guarantee-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 20px;
}


/* Still Have Questions Section */
.still-questions {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-option {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-option h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.contact-option p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-option .btn {
    margin-top: 10px;
}


/* ===================================
   Answers Page Styles
   =================================== */

/* Ask Question Form */
.ask-question-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.question-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.question-form .form-group {
    margin-bottom: 25px;
}

.question-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.question-form input[type="text"],
.question-form input[type="email"],
.question-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.question-form input:focus,
.question-form textarea:focus {
    outline: none;
    border-color: #ff6600;
}

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

.question-form .btn-primary {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.question-form .btn-primary:hover {
    background: #e55a00;
}

/* Admin Section */
.admin-section {
    padding: 60px 0;
    background: #fff9f5;
}

.admin-questions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-question-card {
    background: white;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 25px;
}

.admin-question-card .question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.admin-question-card .question-date {
    color: #666;
    font-size: 14px;
}

.admin-question-card .question-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.admin-question-card .question-email {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.admin-question-card .answer-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 15px;
    resize: vertical;
}

.admin-question-card .action-buttons {
    display: flex;
    gap: 10px;
}

.admin-question-card .btn-answer {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.admin-question-card .btn-answer:hover {
    background: #218838;
}

.admin-question-card .btn-dismiss {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.admin-question-card .btn-dismiss:hover {
    background: #c82333;
}

/* Answered Questions Section */
.answered-questions-section {
    padding: 60px 0;
    background: white;
}

.answered-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.qa-card {
    padding: 30px 0;
    border-bottom: 2px solid #eee;
}

.qa-card:last-child {
    border-bottom: none;
}

.qa-card .question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.qa-card .question strong {
    color: #ff6600;
    margin-right: 8px;
}

.qa-card .answer {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.qa-card .answer strong {
    color: #28a745;
    margin-right: 8px;
}

.qa-card .qa-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Category Sections (for future use) */
.qa-category {
    margin-top: 40px;
}

.qa-category-title {
    font-size: 22px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff6600;
}

/* Featured Images on Answers Page */
.featured-image {
    margin: 40px 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .question-form {
        padding: 25px;
    }
    
    .admin-question-card {
        padding: 20px;
    }
    
    .admin-question-card .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-question-card .action-buttons {
        flex-direction: column;
    }
    
    .admin-question-card .btn-answer,
    .admin-question-card .btn-dismiss {
        width: 100%;
    }
    
    .qa-card .qa-meta {
        flex-direction: column;
        gap: 5px;
    }
}


/* ===================================
   Pricing Method Section Styles
   =================================== */

.pricing-method-section {
    padding: 60px 0;
    background: white;
}

.pricing-explanation {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-intro {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

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

.pricing-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.pricing-number {
    width: 50px;
    height: 50px;
    background: #ff6600;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.pricing-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.pricing-benefits {
    background: #fff9f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    margin-bottom: 40px;
}

.pricing-benefits h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.pricing-benefits ul {
    list-style: none;
    padding: 0;
}

.pricing-benefits li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.pricing-cta {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.pricing-cta .btn {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta .btn {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

/* ===================================
   Pricing Examples Section Styles
   =================================== */

.pricing-examples-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-examples-section .section-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

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

.example-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.example-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ff6600;
    text-align: center;
}

.example-items {
    margin-bottom: 20px;
}

.example-items p {
    font-weight: 600;
    margin-bottom: 10px;
}

.example-items ul {
    list-style: disc;
    padding-left: 20px;
}

.example-items li {
    margin-bottom: 5px;
    color: #555;
}

.example-breakdown {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 15px;
}

.example-breakdown p {
    margin-bottom: 5px;
    color: #666;
}

.example-total {
    background: #fff9f5;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 20px;
    color: #ff6600;
}

.examples-note {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.examples-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

/* ===================================
   Minimum Charge Section Styles
   =================================== */

.minimum-charge-section {
    padding: 60px 0;
    background: white;
}

.minimum-charge-card {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.minimum-charge-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.minimum-charge-amount {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border: 2px solid #ff6600;
}

.charge-label {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.charge-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ff6600;
}

.minimum-note {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===================================
   Policy Snippet Section Styles
   =================================== */

.policy-snippet {
    padding: 60px 0;
    background: #f8f9fa;
}

.policy-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.policy-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.policy-card ul {
    list-style: disc;
    padding-left: 25px;
    margin: 20px 0;
}

.policy-card li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.policy-note {
    background: #fff9f5;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #ff6600;
    margin-top: 20px;
}

/* ===================================
   Service Scope Section Styles
   =================================== */

.service-scope-section {
    padding: 60px 0;
    background: white;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.scope-column {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.scope-included {
    border-left: 4px solid #28a745;
}

.scope-excluded {
    border-left: 4px solid #dc3545;
}

.scope-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.scope-included h3 {
    color: #28a745;
}

.scope-excluded h3 {
    color: #dc3545;
}

.scope-column ul {
    list-style: none;
    padding: 0;
}

.scope-column li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    color: #555;
}

.scope-column li:last-child {
    border-bottom: none;
}

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

/* ===================================
   Featured Image Section Styles
   =================================== */

.featured-image-section {
    padding: 40px 0;
    background: white;
}

.featured-image-section .featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* ========================================
   About Page & FAQ Sections Styles
   ======================================== */

/* Company Story Section */
.company-story-section {
    padding: 60px 20px;
    background: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Facts Panel Section */
.facts-panel-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fact-number {
    font-size: 36px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.fact-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.fact-detail {
    font-size: 14px;
    color: #666;
}

/* Badges & Proof Section */
.badges-proof-section {
    padding: 60px 20px;
    background: #fff;
}

.badges-proof-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.badges-proof-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.badge-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.badge-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Team Values Section */
.team-values-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.team-values-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.team-values-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.value-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.value-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.company-story {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.company-story h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.company-story p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

/* Company Details Section */
.company-details-section {
    padding: 60px 20px;
    background: #fff;
}

.company-details-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #ff6600;
}

.detail-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.detail-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.detail-card strong {
    color: #333;
}

/* FAQ Category Sections */
.faq-sections {
    padding: 60px 20px;
    background: #fff;
}

.faq-sections h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-sections .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.faq-category {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Still Questions Section */
.still-questions {
    padding: 60px 20px;
    background: #f8f9fa;
}

.still-questions .section-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.still-questions .section-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-option h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-option p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facts-grid,
    .badges-grid,
    .details-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .fact-number {
        font-size: 28px;
    }
    
    .company-story-section,
    .facts-panel-section,
    .badges-proof-section,
    .team-values-section,
    .company-details-section,
    .still-questions,
    .faq-sections {
        padding: 40px 15px;
    }
}

/* Featured Images - Proper Container and Width */
.featured-image {
    display: block;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .featured-image {
        margin: 30px auto;
        padding: 0 15px;
    }
}


/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Methods Section */
.contact-methods-section {
    padding: 60px 20px;
    background: #fff;
}

.contact-methods-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-methods-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.contact-method-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.method-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.method-detail {
    font-size: 18px;
    font-weight: 600;
    color: #ff6600;
    margin-bottom: 10px;
}

.method-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.response-time-note {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 20px;
    background: #fff3e0;
    border-left: 4px solid #ff6600;
    border-radius: 4px;
}

.response-time-note p {
    margin: 0;
    color: #333;
}

/* Quote Required Info Section */
.quote-required-info-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.quote-required-info-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.quote-required-info-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.info-requirements {
    max-width: 800px;
    margin: 0 auto 40px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.requirement-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ff6600;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.requirement-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.requirement-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.sample-enquiry {
    max-width: 800px;
    margin: 40px auto 0;
}

.sample-enquiry h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.sample-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
    margin-bottom: 30px;
}

.sample-box p {
    margin-bottom: 10px;
    color: #333;
}

.sample-box ul {
    margin: 10px 0;
    padding-left: 20px;
}

.sample-box li {
    margin-bottom: 5px;
    color: #666;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 20px;
    background: #fff;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    width: 100%;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Why Contact Section */
.why-contact-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.why-contact-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Business Details Full Section */
.business-details-full {
    padding: 60px 20px;
    background: #fff;
}

.business-details-full h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.business-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #ff6600;
}

.business-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.business-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.business-info-card strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods-grid,
    .benefits-grid,
    .business-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .requirement-number {
        margin: 0 auto;
    }
    
    .contact-methods-section,
    .quote-required-info-section,
    .contact-form-section,
    .why-contact-section,
    .business-details-full {
        padding: 40px 15px;
    }
}
