/* filepath: /Users/sg/Documents/SG-LTS/TekkemCore/Website/tc-holding-company/src/extensions.css */
/* extensions.css - Styles specific to the Software Extensions & Plugins page */

/* --- General Section Padding --- */
.ext-hero,
.ext-benefits,
.ext-faq { /* Removed pricing section */
    padding: 60px 0;
    text-align: center; /* Center align section content by default */
}

/* --- Extensions Hero Section --- */
.ext-hero h1 {
    font-size: 48px; /* Consistent with other service pages */
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
}

.ext-hero p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: #5c6a7d;
    line-height: 1.6;
}

.ext-hero .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Reusing cta-group from index.css */
.ext-hero .cta-group {
    margin-bottom: 0; /* Adjust spacing if needed */
}

/* --- Benefits Section --- */
.ext-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

/* Reusing benefits-grid structure */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: left;
}

/* Reusing benefit-item structure */
.benefit-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.benefit-item img {
    margin-bottom: 16px;
    /* Basic styling for placeholder */
    background: #e0e0e0;
    border-radius: 8px; /* Square icons */
    display: block;
    font-size: 24px; /* Make emoji icons larger */
    line-height: 48px; /* Center emoji vertically */
    text-align: center;
    width: 48px;
    height: 48px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: #5c6a7d;
    line-height: 1.5;
}

/* --- FAQ Section --- */
.ext-faq {
    background-color: #f8f9fa; /* Light background for contrast */
}

.ext-faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

/* Reusing faq-item structure */
.faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    color: #5c6a7d;
    line-height: 1.6;
}

/* --- Pricing Section Styles Removed --- */

/* Styles for the Extensions page */

.app-list {
    padding: 40px 0;
}

.app-list .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.app-list h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: left; /* Align like 'Paid' title */
    font-weight: bold;
}

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

.app-item {
    /* Remove padding from li, apply to link */
    padding: 0;
    border-bottom: 1px solid #eee; /* Separator line */
}

.app-item-link {
    display: flex;
    align-items: center;
    padding: 15px 0; /* Apply padding here */
    text-decoration: none;
    color: inherit; /* Inherit text color */
}

.app-item-link:hover {
    background-color: #f9f9f9; /* Slight hover effect */
}

.app-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 12px; /* Rounded corners like app icons */
    object-fit: cover;
}

.app-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-right: 15px; /* Add space between details and arrow */
}

.app-name {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 4px; /* Increased margin */
}

.app-subline {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #666; /* Grey color for the subline */
}

.app-price {
    /* Inherit color and size from subline */
    font-weight: normal; /* Match image */
}

.app-developer {
    /* Inherit color and size from subline */
    font-weight: normal; /* Match image */
}

.app-separator {
    margin: 0 4px; /* Space around the dot */
}

.app-arrow {
    color: #ccc;
    margin-left: auto; /* Push icon to the right */
    padding-left: 15px; /* Space before icon */
    display: flex; /* Align icon vertically */
    align-items: center; /* Align icon vertically */
    /* Remove font-size and font-weight as they don't directly apply to SVG */
}

.external-link-icon {
    width: 1em; /* Control size relative to surrounding text/elements */
    height: 1em;
    display: inline-block;
    vertical-align: middle; /* Helps align if used inline */
}

/* Remove old arrow link styles */
/* .app-link { ... } */
/* .app-link:hover { ... } */
