/* Skyrazone Video Production Addons Shared & Base CSS */

:root {
    --sk-primary: #0056FF;
    --sk-dark: #0f172a;
    --sk-text: #334155;
    --sk-muted: #64748b;
    --sk-light-bg: #f8fafc;
    --sk-accent-cyan: #00e5ff;
    --sk-radius: 12px;
}

.sk-section-sub {
    color: var(--sk-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.sk-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--sk-dark);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.25;
}

/* 1. Projects Grid */
.sk-work-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}
.sk-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.sk-project-card {
    position: relative;
    height: 240px;
    border-radius: var(--sk-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sk-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}
.sk-project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}
.sk-project-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}
@media (min-width: 768px) {
    .sk-project-card:nth-child(1) { grid-column: span 3; }
    .sk-project-card:nth-child(2) { grid-column: span 1.5; }
    .sk-project-card:nth-child(3) { grid-column: span 1.5; }
    .sk-project-card:nth-child(4),
    .sk-project-card:nth-child(5),
    .sk-project-card:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 767px) {
    .sk-grid-6 { grid-template-columns: 1fr; }
    .sk-project-card { grid-column: span 1 !important; height: 210px; }
}
.sk-card-meta {
    position: relative;
    z-index: 2;
    text-align: left;
}
.sk-card-num {
    color: var(--sk-accent-cyan);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.sk-card-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px 0;
}
.sk-card-cat {
    color: #cbd5e1;
    font-size: 12px;
    margin: 0;
}
.sk-play-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}
.sk-project-card:hover .sk-play-icon-wrap {
    background: var(--sk-primary);
    border-color: var(--sk-primary);
    transform: translate(-50%, -50%) scale(1.1);
}
.sk-play-triangle {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #ffffff;
    margin-left: 2px;
}
.sk-btn-center {
    text-align: center;
}
.sk-btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid var(--sk-primary);
    border-radius: 6px;
    color: var(--sk-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.sk-btn-outline:hover {
    background: var(--sk-primary);
    color: #ffffff;
}

/* 2. Services / What We Create & Why Choose */
.sk-icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
}
@media (max-width: 991px) {
    .sk-icon-boxes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .sk-icon-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
.sk-icon-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: var(--sk-radius);
    padding: 24px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.sk-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,86,255,0.08);
    border-color: #e2e8f0;
}
.sk-icon-circle {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--sk-primary);
    font-size: 20px;
}
.sk-icon-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sk-dark);
    margin: 0 0 8px 0;
}
.sk-icon-card-desc {
    font-size: 11px;
    color: var(--sk-muted);
    line-height: 1.45;
    margin: 0;
}

/* 3. Featured Project */
.sk-featured-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.sk-featured-left {
    flex: 1;
}
.sk-featured-right {
    flex: 1.2;
}
@media (max-width: 900px) {
    .sk-featured-wrap { flex-direction: column; }
    .sk-featured-right, .sk-featured-left { width: 100%; }
}
.sk-featured-sub {
    color: var(--sk-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sk-featured-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--sk-dark);
    margin: 0 0 16px 0;
}
.sk-featured-text {
    font-size: 14px;
    color: var(--sk-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.sk-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.sk-checklist li {
    font-size: 13px;
    font-weight: 600;
    color: var(--sk-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sk-checklist li i {
    color: var(--sk-primary);
    background: #e0edff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.sk-btn-solid {
    display: inline-block;
    background: var(--sk-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.sk-btn-solid:hover {
    background: #0043c7;
    color: #ffffff;
}
.sk-video-box {
    position: relative;
    border-radius: var(--sk-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #000;
}
.sk-video-box video, .sk-video-box iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
}

/* 4. BTS Gallery */
.sk-bts-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}
.sk-bts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
@media (max-width: 900px) {
    .sk-bts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .sk-bts-grid { grid-template-columns: repeat(2, 1fr); }
}
.sk-bts-item {
    position: relative;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: block;
}
.sk-bts-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}
.sk-bts-item:hover::before {
    background: rgba(0,0,0,0.05);
}

/* 5. Social Proof / Reviews & Brands */
.sk-social-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 850px) {
    .sk-social-wrap { grid-template-columns: 1fr; }
}
.sk-social-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--sk-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sk-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.sk-brand-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: 700;
    font-size: 13px;
    color: #475569;
}
.sk-review-box {
    background: #f8fafc;
    border-radius: var(--sk-radius);
    padding: 25px;
    position: relative;
}
.sk-quote-icon {
    font-size: 32px;
    color: var(--sk-primary);
    line-height: 1;
    margin-bottom: 12px;
}
.sk-review-text {
    font-size: 14px;
    color: var(--sk-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.sk-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sk-reviewer img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.sk-reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--sk-dark);
    margin: 0;
}
.sk-reviewer-role {
    font-size: 12px;
    color: var(--sk-muted);
    margin: 0;
}

/* 6. Blue CTA Banner */
.sk-cta-wrap {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}
.sk-cta-inner {
    background: #0047e0;
    background: linear-gradient(135deg, #003dbd 0%, #0056FF 100%);
    border-radius: 14px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
}
@media (max-width: 850px) {
    .sk-cta-inner { flex-direction: column; text-align: center; }
}
.sk-cta-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
}
.sk-cta-sub {
    font-size: 13px;
    color: #dbeafe;
    margin: 0;
}
.sk-cta-btn {
    background: #ffffff;
    color: var(--sk-primary);
    font-weight: 700;
    font-size: 13px;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease;
}
.sk-cta-btn:hover {
    transform: scale(1.04);
}
.sk-cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}
.sk-cta-contacts a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 7. SEO Content & FAQ */
.sk-faq-section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 850px) {
    .sk-faq-section-wrap { grid-template-columns: 1fr; }
}
.sk-seo-left h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sk-dark);
    margin-bottom: 16px;
}
.sk-seo-left p {
    font-size: 13px;
    color: var(--sk-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}
.sk-faq-right h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sk-dark);
    margin-bottom: 16px;
}
.sk-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
}
.sk-faq-question {
    font-size: 14px;
    font-weight: 700;
    color: var(--sk-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sk-faq-answer {
    font-size: 13px;
    color: var(--sk-muted);
    line-height: 1.6;
    margin-top: 8px;
    display: none;
}
