/* --- Script Download Specific Styles --- */

.script-container {
    background: #ffffff;
}

/* Global Font & Variable Setup in case not loaded */
:root {
    --primary: #08718b;
    --primary-rgb: 8, 113, 139;
    --primary-light: #0d9488;
    --primary-soft: #38bdf8;
    --primary-dark: #065a6f;
    --primary-darker: #043e4d;
    --secondary: #39b54a;
    --secondary-rgb: 57, 181, 74;
    --text-dark: #1a202c;
    --text-main: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --gray-light: #f7fafc;
    --gray-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Style overrides for .not-set container (renders database HTML content) */
.not-set {
    padding: 3rem 0;
    font-family: var(--font-body);
}

.not-set .script-title {
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3.5rem;
    line-height: 1.25;
}

.not-set .card {
    background: #ffffff;
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

/* Two-column layout in card */
.not-set .card .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.not-set .card .col-md-6 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Laptop Mockup Styling */
.not-set .demo-script-img {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    animation: floatMockup 4s ease-in-out infinite alternate;
}

@keyframes floatMockup {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.not-set .img-section {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 12px solid #2d3748;
    border-radius: 14px 14px 0 0;
    background: #1a202c;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.not-set .demo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.not-set .demo-script-img::after {
    content: '';
    display: block;
    width: 114%;
    height: 12px;
    background: #a0aec0;
    margin-left: -7%;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Demo buttons & controls */
.not-set .demo-left-section {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.not-set .demo-left-section .col-md-6 {
    width: calc(50% - 0.65rem);
    padding: 0;
}

.not-set .more-info11 {
    display: block;
    background: var(--white);
    color: var(--primary);
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
    text-align: center;
    box-sizing: border-box;
}

.not-set .more-info11:hover {
    background: var(--secondary);
    color: var(--primary-darker);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

/* Free Download button container */
.not-set .d-flex {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.25rem 0 !important;
}

.not-set .d-flex button {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.95rem 2.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.not-set .d-flex button:hover {
    background: var(--secondary) !important;
    color: var(--primary-darker) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

/* Login Detail Badge */
.not-set .login-detail {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.not-set .login-detail::before {
    content: '\f023'; /* lock icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.05rem;
}

/* Tech specs section */
.not-set .demo-script-desc {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 2rem;
    box-sizing: border-box;
    margin-top: 1rem;
}

.not-set .tech-sec-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    margin-top: 0;
    border-bottom: 2px dotted rgba(var(--primary-rgb), 0.2);
    padding-bottom: 0.5rem;
}

.not-set .demo-script-desc p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 0.85rem;
}

.not-set .demo-script-desc p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Feature grid layout */
.not-set .script-feature-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-top: 4.5rem;
    margin-bottom: 2rem;
}

.not-set .script-feature-section p.pteg {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.not-set .sub-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.not-set .bulletlisting {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.not-set .bulletlisting li {
    position: relative;
    background-color: var(--gray-light) !important;
    background-image: none !important;
    padding: 1.15rem 1.25rem 1.15rem 3rem !important;
    border-radius: 12px;
    border-left: 4.5px solid var(--primary-light);
    border-top: 1px solid rgba(0,0,0,0.02);
    border-right: 1px solid rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.02);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0 !important;
}

.not-set .bulletlisting li:hover {
    background-color: #ffffff !important;
    background-image: none !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary);
}

.not-set .bulletlisting li::before {
    content: '\f00c'; /* checkmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.1rem;
    position: absolute;
    left: 1.25rem;
    top: 1.35rem;
}

/* Last two full-width highlight boxes */
.not-set .bulletlisting li:nth-last-child(1),
.not-set .bulletlisting li:nth-last-child(2) {
    grid-column: span 1;
    background-color: transparent !important;
    background-image: linear-gradient(135deg, rgba(8, 113, 139, 0.05) 0%, rgba(57, 181, 74, 0.05) 100%) !important;
    border-left-color: var(--secondary);
    font-weight: 700;
    padding: 1.5rem 1.5rem 1.5rem 3.25rem !important;
}

.not-set .bulletlisting li:nth-last-child(1)::before,
.not-set .bulletlisting li:nth-last-child(2)::before {
    content: '\f05a'; /* info-circle */
    color: var(--primary);
    left: 1.5rem;
    top: 1.7rem;
}

/* Hiring CTA Section Styles */
.portfolio-cta {
    padding: 5.5rem 0;
    background: linear-gradient(358deg, rgba(8, 113, 139, 0) 0%, rgba(8, 113, 139, 0.95) 100%);
    color: #ffffff;
    text-align: center;
}

.portfolio-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta .page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    margin: 0 auto 2.5rem;
}

.portfolio-cta .page-divider::before,
.portfolio-cta .page-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

.portfolio-cta .page-divider span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 0.65rem;
}

.cta-modes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 2.5rem auto 0 auto;
    max-width: 680px;
}

.cta-mode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0.5rem;
}

.cta-mode:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

.cta-mode-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.cta-mode:hover .cta-mode-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .not-set .card .col-md-6 {
        width: 100%;
        margin-bottom: 2rem;
    }
    .not-set .demo-script-img {
        max-width: 380px;
    }
    .cta-modes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .not-set .script-title {
        font-size: 2.15rem;
    }
    .not-set .card {
        padding: 1.5rem;
    }
    .not-set .demo-left-section .col-md-6 {
        width: 100%;
    }
}
