/* IT Aware - Static CSS */

/* Color Variables */
:root {
    --color-background: hsl(0, 0%, 100%);
    --color-foreground: hsl(192, 44%, 19%);
    --color-card: hsl(0, 0%, 98%);
    --color-primary: hsl(192, 56%, 29%);
    --color-secondary: hsl(192, 44%, 19%);
    --color-muted: hsl(210, 40%, 96%);
    --color-muted-foreground: hsl(192, 30%, 45%);
    --color-border: hsl(214, 32%, 91%);
    --color-primary-rgb: 33, 100, 119;
    --color-secondary-rgb: 26, 61, 70;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-content {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

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

.nav-link:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-inner {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: white;
}

.hero-badge span {
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    display: block;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.5);
}

.feature-card svg {
    color: var(--color-primary);
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* Section Styles */
.section {
    padding: 5rem 1rem;
    background-color: var(--color-background);
}

.section-alt {
    background: linear-gradient(135deg, 
        rgba(61, 120, 138, 0.15) 0%,
        rgba(34, 67, 77, 0.2) 50%, 
        rgba(61, 120, 138, 0.1) 100%);
    border-top: 2px solid rgba(61, 120, 138, 0.3);
    border-bottom: 2px solid rgba(61, 120, 138, 0.3);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
.card {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.card-hover:hover {
    border-color: rgba(var(--color-primary-rgb), 0.5);
    box-shadow: 0 10px 25px -5px rgba(var(--color-primary-rgb), 0.1);
}

.card-icon {
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Video Section */
.video-container {
    max-width: 56rem;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(var(--color-primary-rgb), 0.2);
    border: 1px solid var(--color-border);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-muted-foreground);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.5);
    box-shadow: 0 10px 25px -5px rgba(var(--color-primary-rgb), 0.1);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
}

.team-socials {
    display: flex;
    gap: 0.75rem;
}

.team-socials a {
    color: var(--color-muted-foreground);
    transition: color 0.3s;
}

.team-socials a:hover {
    color: var(--color-primary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form .card {
    padding: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-info-item svg {
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/*
  Contact form – scoped layout
  We scope these rules to avoid any global form/layout rules (e.g. portal/admin forms)
  accidentally affecting the public website contact section.
*/
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

input,
textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background-color: var(--color-background);
    font-size: 0.875rem;
    transition: all 0.3s;
}


select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background-color: var(--color-background);
    font-size: 0.875rem;
    color: var(--color-text);
    box-sizing: border-box;
}


input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.1);
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.0625rem;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    min-height: 44px;
}

.btn svg {
    width: 20px !important;
    height: 20px !important;
}

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

.btn-primary:hover {
    background-color: hsl(192, 56%, 25%);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: hsl(192, 44%, 25%);
}

.btn-outline {
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    color: var(--color-foreground);
}

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

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
}

.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--color-card);
    border-top: 1px solid var(--color-border);
    padding: 3rem 1rem;
}

/* Compact footer variant for awareness pages */
.footer-min {
    padding: 1rem 0;
}

.footer-blue {
    background-color: var(--color-primary);
    color: #fff;
}

.footer-blue .muted,
.footer-blue a,
.footer-blue .footer-address,
.footer-blue .footer-description {
    color: rgba(255, 255, 255, 0.9);
}

.footer-blue a:hover {
    color: #fff;
}

.footer-blue svg {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--color-primary);
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
}

.footer-address {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* Icon Sizes */
.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}

.icon-xl {
    width: 2.5rem;
    height: 2.5rem;
}

svg {
    flex-shrink: 0;
}

/* Language Selector */
.lang-selector-fixed {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    gap: 0.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Video page specific */
.videos-page-container {
    max-width: 90rem;
}

/* Footer branding */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-email {
    margin-top: 1rem;
}

/* Awareness page styles */
.awareness-container {
    min-height: 100vh;
    display: flex;
    background-color: var(--color-background);
}

.progress-bar {
    width: 4rem;
    background-color: var(--color-card);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
}

.progress-track {
    flex: 1;
    position: relative;
    width: 0.5rem;
    min-height: 10rem;
    height: 14rem;
    background-color: var(--color-muted);
    border-radius: 9999px;
}

.progress-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 9999px;
    transition: height 0.3s;
}

.progress-text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    font-weight: 500;
}

.main-content {
    flex: 1;
    display: flex;
    
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    width: 100%;
    max-width: 80rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.content-box {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    
    justify-content: center;
}

.content-box h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.content-box p {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

.image-box {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-question {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.quiz-question p {
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.quiz-buttons {
    display: flex;
    gap: 1rem;
}

.quiz-buttons button {
    flex: 1;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Awareness page specific section toggle */
body[data-page="awareness"] .section {
    display: none;
}

body[data-page="awareness"] .section.active {
    display: block;
}

.quiz-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-muted);
}

.quiz-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.quiz-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

/* Terms of Use Page */
.terms-page {
    padding-top: 6rem;
    padding-bottom: 5rem;
    background-color: var(--color-background);
}

.terms-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .terms-layout {
        grid-template-columns: 3fr 1fr;
    }
}

.terms-content {
    max-width: 100%;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .terms-title {
        font-size: 3rem;
    }
}

.terms-sections {
    display: flex;
    
    gap: 3rem;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.terms-section p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-box {
    background-color: var(--color-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.25rem;
    color: var(--color-muted-foreground);
}

.contact-box strong {
    color: var(--color-foreground);
}

/* Version Sidebar */
.version-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .version-sidebar {
        position: sticky;
        top: 6rem;
        height: fit-content;
    }
}

.version-box {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.version-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.version-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.version-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.version-date {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.version-note {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
}

.version-note p {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    line-height: 1.5;
}

/* Video Page Specific Styles */
.video-main {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Services Detail Page Styles */
.services-detail-main {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.services-detail-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-detail-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.services-detail-header .subtitle {
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

.services-detail-section {
  margin-bottom: 80px;
}

.section-title-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 30px;
}

.section-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.section-title-group h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-foreground);
}

.section-subtitle {
  color: var(--color-muted-foreground);
  font-size: 1rem;
}

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

.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px -10px rgba(61, 120, 138, 0.3);
  transform: translateY(-2px);
}

.service-card .card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-foreground);
}

.service-card p {
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(61, 120, 138, 0.15) 0%,
    rgba(34, 67, 77, 0.2) 100%);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 60px 40px;
  margin-top: 60px;
}

.services-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-foreground);
}

.services-cta p {
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(61, 120, 138, 0.5);
}

@media (max-width: 768px) {
  .services-detail-header h1 {
    font-size: 2rem;
  }
  
  .services-detail-header .subtitle {
    font-size: 1rem;
  }
  
  .section-title-group {
    
  }
  
  .section-icon {
    margin-top: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-cta {
    padding: 40px 20px;
  }
  
  .services-cta h2 {
    font-size: 1.5rem;
  }
  
  .services-cta p {
    font-size: 1rem;
  }
}

/* FAQ Page Specific Styles */
.videos-page-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.videos-page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .videos-page-title {
        font-size: 2rem;
    }
}

.videos-page-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
}

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

.category-header {
    margin-bottom: 2rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
    font-weight: bold;
}

.category-description {
    color: var(--color-muted-foreground);
    font-size: 1.125rem;
}

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

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

.video-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-header {
    padding: 1.5rem;
    padding-bottom: 0.75rem;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}

.video-content {
    padding: 1.5rem;
    padding-top: 0;
}

.video-content .video-wrapper {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    border-color: var(--color-primary);
}

.lang-btn-active {
    opacity: 1;
    border-color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

/* Blue variant: when inside the fixed selector bar */

/* Footer Content Styles */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-column h3,
.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.footer-column p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

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

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

.footer-column ul a {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: var(--color-primary);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

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

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0.5rem;
}

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

/* FAQ Styles */
.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #666;
}

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

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    color: #3b82f6;
}

.faq-category-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-contact-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0.5rem;
    text-align: center;
}

.faq-contact-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-contact-box p {
    color: #666;
    margin-bottom: 1rem;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
}

.faq-contact-link:hover {
    text-decoration: underline;
}

.faq-contact-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-category-header h2 {
        font-size: 1.25rem;
    }
}

/* Variable */
:root {
    --background: var(--color-background);
    --foreground: var(--color-foreground);
    --card: var(--color-card);
    --primary: var(--color-primary);
    --secondary: var(--color-secondary);
    --muted: var(--color-muted);
    --muted-foreground: var(--color-muted-foreground);
    --border: var(--color-border);
    --primary-rgb: var(--color-primary-rgb);
    --secondary-rgb: var(--color-secondary-rgb);
}

/* 404 Page */
.not-found-container {
    display: flex;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 6rem;
}

.not-found-content {
    text-align: center;
}

.not-found-title {
    margin-bottom: 1rem;
    font-size: 3.75rem;
    font-weight: bold;
    color: var(--color-primary);
}

.not-found-message {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--color-muted-foreground);
}
/* Website nav language selector fix */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .lang-selector {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-actions .lang-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    font-size: 0.85rem;
    line-height: 1;
}

.nav-actions .lang-btn:hover {
    text-decoration: underline;
}
/* FAQ page layout */
.faq-page {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.faq-page .section-narrow {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item + .faq-item {
    margin-top: 1.5rem;
}

.faq-item h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}


/* FAQ headings styling */
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.lang-btn{display:inline-block;}

/* Checkbox styling for signup form */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
}

.form-group-full {
    grid-column: 1 / -1;
}
