/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #163e64;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #6c757d;
}

a {
    color: #46b1e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #163e64;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #46b1e1;
    color: white;
}

.btn-primary:hover {
    background-color: #163e64;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #46b1e1;
    border: 2px solid #46b1e1;
}

.btn-secondary:hover {
    background-color: #46b1e1;
    color: white;
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 30px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #1a1a1a;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover {
    color: #46b1e1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #46b1e1;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1a1a1a;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #46b1e1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #163e64;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #163e64 0%, #46b1e1 100%);
    color: white;
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: white;
    color: #163e64;
}

.hero .btn-primary:hover {
    background-color: #f8f9fa;
    color: #163e64;
}

.hero .btn-secondary {
    border-color: white;
    color: white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: #163e64;
}

/* Mockup */
.mockup {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.mockup-header {
    background-color: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.mockup-dots span:nth-child(1) { background-color: #ff5f56; }
.mockup-dots span:nth-child(2) { background-color: #ffbd2e; }
.mockup-dots span:nth-child(3) { background-color: #27ca3f; }

.mockup-content {
    padding: 2rem;
}

.search-demo h3 {
    color: #163e64;
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background-color: #46b1e1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.result-demo {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

.vehicle-info p {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Features Summary */
.features-summary {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-summary h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

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

/* Quick Start */
.quick-start {
    padding: 4rem 0;
}

.quick-start h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.step h3 {
    margin-bottom: 1rem;
}

.step a {
    color: #46b1e1;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: #163e64;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: #46b1e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #163e64 0%, #46b1e1 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Feature Detail Sections */
.feature-detail {
    padding: 4rem 0;
}

.feature-detail.alt {
    background-color: #f8f9fa;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.feature-text h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6c757d;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #46b1e1;
    font-weight: bold;
}

.feature-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Feature Mockups */
.feature-mockup {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* MOT History Demo */
.mot-history-demo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mot-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    align-items: center;
}

.mot-result {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: center;
}

.mot-result.pass {
    background-color: #d4edda;
    color: #155724;
}

.mot-result.fail {
    background-color: #f8d7da;
    color: #721c24;
}

/* Shortcode Examples */
.shortcode-examples {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.code-block {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #46b1e1;
}

.code-block h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
}

.code-block code {
    background-color: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
}

/* Code Demo */
.code-demo {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.25rem;
}

.code-comment {
    color: #6c757d;
}

.code-tag {
    color: #163e64;
    font-weight: bold;
}

.code-var {
    color: #e83e8c;
}

.code-func {
    color: #007bff;
}

.code-string {
    color: #28a745;
}

/* Additional Features */
.additional-features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.additional-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #163e64 0%, #46b1e1 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: white;
    color: #163e64;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    color: #163e64;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #163e64;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #163e64;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #46b1e1;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #163e64;
    background-color: #f8f9fa;
    border: none;
    outline: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover {
    background-color: #e9ecef;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #46b1e1;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.faq-content p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.faq-content ul,
.faq-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.faq-content code {
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
    border: 1px solid #e9ecef;
}

.faq-content a {
    color: #46b1e1;
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* Code Examples in FAQ */
.code-example {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 4px solid #46b1e1;
}

.code-example h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
    font-size: 1rem;
}

.code-example code {
    background-color: #e9ecef;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
    display: block;
    margin-top: 0.5rem;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 3rem 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 3rem;
}

.faq-cta h2 {
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-method:hover {
    background-color: #e9ecef;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #163e64;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.contact-details a {
    color: #46b1e1;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 1rem;
}

.contact-form p {
    margin-bottom: 2rem;
    color: #6c757d;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #163e64;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Support Resources */
.support-resources {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.support-resources h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.support-resources p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.resource-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

/* Response Time */
.response-time {
    padding: 4rem 0;
    background: linear-gradient(135deg, #163e64 0%, #46b1e1 100%);
    color: white;
}

.response-info {
    text-align: center;
}

.response-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.response-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.response-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Documentation Styles */
.docs-overview {
    padding: 4rem 0;
    padding-top: 2rem;
}

.docs-intro {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.docs-intro h2 {
    margin-bottom: 1.5rem;
    color: #163e64;
    font-size: 2.5rem;
}

.docs-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #6c757d;
    line-height: 1.7;
}

.docs-quick-nav {
    margin-bottom: 4rem;
}

.docs-quick-nav h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #163e64;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.docs-quick-nav h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    border-radius: 2px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-nav-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.quick-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-nav-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    color: inherit;
}

.quick-nav-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-nav-item h4 {
    margin-bottom: 1rem;
    color: #163e64;
}

.docs-sections {
    margin-bottom: 4rem;
}

.docs-section {
    margin-bottom: 3rem;
}

.docs-section h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #46b1e1;
    color: #163e64;
    font-size: 2rem;
    position: relative;
}

.docs-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
}

.docs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.docs-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.docs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.docs-card h3 {
    margin-bottom: 1rem;
}

.docs-card h3 a {
    color: #163e64;
    text-decoration: none;
    transition: color 0.3s ease;
}

.docs-card h3 a:hover {
    color: #46b1e1;
}

.docs-card ul {
    margin: 1rem 0;
    padding-left: 0rem;
    list-style-type: none;
}

.docs-card li {
    margin-bottom: 0.5rem;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.docs-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #46b1e1;
    font-weight: bold;
}

.docs-card .btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Documentation page content styling */
.installation-content,
.api-keys-content,
.shortcodes-content,
.developer-content {
    padding: 2rem 0;
}

.installation-content h2,
.api-keys-content h2,
.shortcodes-content h2,
.developer-content h2 {
    color: #163e64;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #46b1e1;
    position: relative;
}

.installation-content h2::after,
.api-keys-content h2::after,
.shortcodes-content h2::after,
.developer-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
}

.common-tasks {
    margin-bottom: 4rem;
}

.common-tasks h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.task-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.task-item h3 {
    margin-bottom: 1rem;
}

.task-item code {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
    display: block;
    margin: 1rem 0;
    border: 1px solid #e9ecef;
}

.docs-support {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.docs-support h2 {
    margin-bottom: 2rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.support-option h3 {
    margin-bottom: 1rem;
}

/* Installation Page Styles */
.requirements-section {
    margin-bottom: 4rem;
}

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

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.requirement-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.requirement-details h3 {
    margin-bottom: 0.5rem;
}

.installation-methods {
    margin-bottom: 4rem;
}

.installation-methods h2 {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #46b1e1;
    color: #163e64;
    font-size: 2rem;
    position: relative;
}

.installation-methods h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
}

.installation-method {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.installation-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.installation-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.installation-method h3 {
    margin-bottom: 2rem;
    color: #163e64;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.installation-method h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
}

.method-steps {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #46b1e1, #163e64);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(70, 177, 225, 0.3);
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
}

.post-installation {
    margin-bottom: 4rem;
}

.setup-steps {
    display: grid;
    gap: 2rem;
}

.setup-step {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.setup-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #46b1e1, #163e64);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.setup-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.setup-step h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.setup-step ol,
.setup-step ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.setup-step li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

/* API Keys Page Styles */
.api-overview {
    margin-bottom: 4rem;
}

.api-overview h2 {
    margin-bottom: 1rem;
}

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

.api-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.api-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.api-info-card h3 {
    margin-bottom: 1rem;
}

.api-info-card p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.api-setup-section {
    margin-bottom: 4rem;
}

.api-setup-section h2 {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #46b1e1;
}

.setup-steps {
    margin-bottom: 2rem;
}

.api-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #46b1e1;
}

.api-note h4 {
    margin-bottom: 1rem;
    color: #163e64;
}

.plugin-configuration {
    margin-bottom: 4rem;
}

.config-steps {
    display: grid;
    gap: 2rem;
}

.config-step {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.config-step h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.config-form-demo {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #163e64;
}

.form-field input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    background-color: #e9ecef;
}

.field-help {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.testing-section {
    margin-bottom: 4rem;
}

.testing-methods {
    display: grid;
    gap: 2rem;
}

.testing-method {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testing-method h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.testing-method ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.testing-method li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.security-practices {
    margin-bottom: 4rem;
}

.security-tips {
    display: grid;
    gap: 2rem;
}

.security-tip {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.security-tip h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.security-tip ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.security-tip li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

/* Shortcodes Page Styles */
.shortcodes-overview {
    margin-bottom: 4rem;
}

.shortcode-quick-ref {
    margin-top: 2rem;
}

.quick-ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quick-ref-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.quick-ref-item code {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.shortcode-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.shortcode-section:last-child {
    border-bottom: none;
}

.shortcode-details {
    margin-top: 2rem;
}

.shortcode-basic {
    margin-bottom: 2rem;
}

.shortcode-basic h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.parameter-table {
    margin: 2rem 0;
    overflow-x: auto;
}

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

.parameter-table th,
.parameter-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.parameter-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #163e64;
}

.parameter-table code {
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #163e64;
    border: 1px solid #e9ecef;
}

.shortcode-examples {
    margin: 2rem 0;
}

.example-item {
    margin-bottom: 1.5rem;
}

.example-item h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
}

.shortcode-output {
    margin-top: 2rem;
}

.output-demo {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

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

.info-item {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.mot-tests {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mot-test {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    align-items: center;
}

.test-failures {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.875rem;
    color: #721c24;
}

.advanced-usage {
    margin-bottom: 4rem;
}

.advanced-examples {
    display: grid;
    gap: 2rem;
}

.advanced-example {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.advanced-example h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.styling-section {
    margin-bottom: 4rem;
}

.styling-info {
    margin-bottom: 2rem;
}

.css-examples {
    display: grid;
    gap: 2rem;
}

.css-example {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.css-example h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

/* Developer Page Styles */
.developer-overview {
    margin-bottom: 4rem;
}

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

.feature-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.functions-section {
    margin-bottom: 4rem;
}

.function-reference {
    display: grid;
    gap: 3rem;
}

.function-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.function-item h3 {
    margin-bottom: 1rem;
    color: #163e64;
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 4px solid #46b1e1;
}

.function-details {
    margin-top: 1.5rem;
}

.function-details h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
}

.function-details ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.function-details li {
    margin-bottom: 0.25rem;
    color: #6c757d;
}

.hooks-section {
    margin-bottom: 4rem;
}

.hooks-overview {
    margin-bottom: 2rem;
}

.hooks-reference {
    display: grid;
    gap: 3rem;
}

.hook-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hook-item h3 {
    margin-bottom: 1.5rem;
    color: #163e64;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #46b1e1;
}

.hook-detail {
    margin-bottom: 2rem;
}

.hook-detail h4 {
    margin-bottom: 0.5rem;
    color: #163e64;
    font-family: 'Courier New', monospace;
}

.hook-detail p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.integration-section {
    margin-bottom: 4rem;
}

.integration-examples {
    display: grid;
    gap: 3rem;
}

.example-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.example-item h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.performance-section {
    margin-bottom: 4rem;
}

.performance-tips {
    display: grid;
    gap: 2rem;
}

.tip-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tip-item h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.security-section {
    margin-bottom: 4rem;
}

.security-tips {
    display: grid;
    gap: 2rem;
}

.security-tip {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.security-tip h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

/* Next Steps */
.next-steps {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.next-step-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.next-step-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.next-step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.next-step-card h3 {
    margin-bottom: 1rem;
    color: #163e64;
}

.next-step-card p {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 1rem;
        z-index: 1000;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        display: block;
        justify-content: initial;
        border-top: none;
        border-bottom: none;
        border-radius: 6px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-actions {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Documentation responsive */
    .quick-nav-grid,
    .docs-cards,
    .tasks-grid,
    .support-options,
    .requirements-grid,
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .api-info-grid,
    .requirements-grid,
    .quick-ref-grid {
        grid-template-columns: 1fr;
    }
    
    .parameter-table {
        font-size: 0.875rem;
    }
    
    .parameter-table th,
    .parameter-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .function-item,
    .hook-item,
    .example-item,
    .tip-item,
    .security-tip {
        padding: 1.5rem;
    }
    
    .code-block {
        font-size: 0.875rem;
        overflow-x: auto;
    }
    
    .mot-test {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 2rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Ensure all content stays within viewport */
    .site-header,
    .site-footer,
    .hero,
    .features-summary,
    .quick-start,
    .faq-section,
    .contact-section,
    .docs-overview,
    .requirements-section,
    .installation-methods,
    .api-overview,
    .api-setup-section,
    .plugin-configuration,
    .testing-section,
    .security-practices,
    .shortcodes-overview,
    .shortcode-section,
    .developer-overview,
    .functions-section,
    .hooks-section,
    .integration-section,
    .performance-section,
    .security-section,
    .next-steps {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
} 