/* ============================================================
   AWSCMS Frontend Styles
   Bootstrap 5.3+ Compatible | Professional Grade
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    --color-primary: #0d6efd;
    --color-primary-hover: #0b5ed7;
    --color-primary-light: #eef2ff;
    --color-secondary: #6c757d;
    --color-accent: #6366f1;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    --bg-btn:   rgba(30,41,59,.8);
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-header: #0f172a;
    --bg-footer: #0f172a;
    --bg-subtle: #f1f5f9;

    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-dark: #1e293b;   

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---- Base ---- */
body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--color-primary); transition: color var(--transition);}
a:hover { color: var(--color-primary-hover); }
.corp-hero-btn,
.carousel-control-prev,
.carousel-control-next,
.corp-ref-prev,
.corp-ref-next,
.btn{box-shadow: 0 10px 20px #94a3b8;}

::selection { background: var(--color-primary); color: #fff; }

img { max-width: 100%; height: auto; }


/* ---- Header ---- */
header {
    background: var(--bg-header);
}


/* ---- Main Content ---- */
main {
    min-height: 60vh;
}

main > .container:first-child {
    animation: fadeIn 400ms ease-out;
}


/* ---- Cards ---- */
.card-post,
.card-product,
.card-project,
.card-forum,
.card-video {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.card-post:hover,
.card-product:hover,
.card-project:hover,
.card-forum:hover,
.card-video:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.card-post .card-img-top,
.card-product .card-img-top,
.card-project .card-img-top,
.card-video .card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-light);
}

.card-post .card-body,
.card-product .card-body,
.card-project .card-body,
.card-forum .card-body,
.card-video .card-body {
    padding: 1.25rem;
}

.card-post .card-title,
.card-product .card-title,
.card-project .card-title,
.card-video .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.card-post .card-title a,
.card-product .card-title a,
.card-project .card-title a,
.card-video .card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.card-post .card-title a:hover,
.card-product .card-title a:hover,
.card-project .card-title a:hover,
.card-video .card-title a:hover {
    color: var(--color-primary);
}

.card-post .card-text,
.card-product .card-text,
.card-project .card-text,
.card-video .card-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.card-post .card-footer,
.card-product .card-footer,
.card-project .card-footer,
.card-video .card-footer {
    background: transparent;
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ---- Features Grid ---- */
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-box .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    transition: background var(--transition), color var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--color-primary);
    color: #fff;
}

.feature-box h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}


/* ---- Hero Section ---- */
.hero-section {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-section { padding: 2.5rem 0 2rem; }
    .hero-section h1 { font-size: 1.75rem; }
    .hero-section .lead { font-size: 1rem; }
}


/* ---- Page Header ---- */
.page-header {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.page-header .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.page-header .breadcrumb-item a { text-decoration: none; }


/* ---- Content / WYSIWYG ---- */
.content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.content h1, .content h2, .content h3, .content h4 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.content h2 { font-size: 1.5rem; }
.content h3 { font-size: 1.25rem; }

.content p { margin-bottom: 1.25rem; }

.content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.content a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.content a:hover { color: var(--color-primary-hover); }

.content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.content ul, .content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.content li { margin-bottom: 0.4rem; }

.content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.content code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--bg-subtle);
    padding: 0.15em 0.4em;
    border-radius: 3px;
    color: #e11d48;
}

.content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.content th, .content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.content th {
    background: var(--bg-subtle);
    font-weight: 600;
}


/* ---- Avatars ---- */
.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-xs {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.8rem;
}

.avatar-picker label {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 2px;
    display: inline-block;
    transition: border-color var(--transition);
}
.avatar-picker label.selected,
.avatar-picker label:hover { border-color: var(--color-primary); }


/* ---- Video ---- */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    display: block;
}

.video-thumbnail {
    position: relative;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.video-thumbnail .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background var(--transition);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-thumbnail .play-overlay i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition);
}

.video-thumbnail:hover .play-overlay i {
    transform: scale(1.1);
}


/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}


/* ---- Footer ---- */
footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

footer a:hover {
    color: #fff;
}

footer h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ---- Forms ---- */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

textarea.form-control { min-height: 100px; }

.btn {
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-primary {
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: var(--color-primary-hover);
}

.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
}

.btn-sm { font-size: 0.8rem; padding: 0.35rem 0.8rem; }
.btn-lg { font-size: 1rem; padding: 0.65rem 1.5rem; }


/* ---- Pagination ---- */
.pagination {
    gap: 0.25rem;
}

.pagination .page-link {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    color: var(--text-primary);
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    transition: all var(--transition);
}

.pagination .page-link:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
}


/* ---- Breadcrumb ---- */
.breadcrumb {
    font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
}


/* ---- Badges ---- */
.badge {
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.3em 0.6em;
    border-radius: 50px;
}


/* ---- Alerts ---- */
.alert {
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.alert-dismissible .btn-close { padding: 1rem; }


/* ---- Product Specific ---- */
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price .original {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}


/* ---- Forum ---- */
.forum-topic {
    transition: background var(--transition);
    border-radius: var(--radius-sm);
}

.forum-topic:hover {
    background: var(--color-primary-light);
}


/* ---- Posts / Blog ---- */
.post-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}


/* ---- Project ---- */
.project-status-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
}

.project-status-completed { background: #dcfce7; color: #166534; }
.project-status-in-progress { background: #dbeafe; color: #1e40af; }
.project-status-planned { background: #fef3c7; color: #92400e; }


/* ---- Animations ---- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 400ms ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 500ms ease-out both;
}

.animate-fade-in-up:nth-child(1) { animation-delay: 0ms; }
.animate-fade-in-up:nth-child(2) { animation-delay: 80ms; }
.animate-fade-in-up:nth-child(3) { animation-delay: 160ms; }
.animate-fade-in-up:nth-child(4) { animation-delay: 240ms; }


/* ---- Utilities ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-soft-primary { background: var(--color-primary-light); }

.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }


/* ===== SIDEBAR ===== */
.main-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.main-with-sidebar > .main-content {
    flex: 1;
    min-width: 0;
}

.main-with-sidebar > aside {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
    padding: 0.85rem 1.15rem;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.sidebar-widget-body {
    padding: 0.85rem 1.15rem;
    font-size: 0.85rem;
}

.sidebar-widget-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-widget-body ul li:last-child {
    border-bottom: none;
}

.sidebar-widget-body ul li a {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: color var(--transition);
}

.sidebar-widget-body ul li a:hover {
    color: var(--color-primary);
}

/* ===== SIDEBAR ===== */
.sidebar-module-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .03em;
    color: #1e293b;
    margin-bottom: 5px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-left: 3px solid #ffb600;
}
.sidebar-module-title.is-uppercase {
    text-transform: uppercase;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
}
.sidebar-nav li {
    border-bottom: 1px solid #f1f5f9;
}
.sidebar-nav li:last-child {
    border-bottom: none;
}
.sidebar-nav li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: all .3s;
    background: #fff;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: #f8f9fa;
    color: #1e293b;
    font-weight: 600;
    padding-left: 20px;
}

.sidebar-ads {
    margin-bottom: 1rem;
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--shadow-dark) !important;
    box-shadow: 0 10px 20px var(--text-muted) !important;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
#backToTop.show {
    opacity: 1;
    transform: translateY(0);
}
#backToTop:hover {
    /*background: var(--color-primary-hover);*/
    background: #ffb600 !important;
    box-shadow: 0 10px 20px var(--shadow-dark) !important;
    transform: translateY(-3px);
    transition: 0.3s,
}

@media (max-width: 991.98px) {
    .main-with-sidebar {
        flex-direction: column;
    }
    .main-with-sidebar > aside {
        width: 100%;
        order: 0;
    }
}


/* ===== ADS (REKLAM) ===== */
.ad-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.ad-banner > * {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.ad-banner img {
    transition: opacity var(--transition);
}

.ad-banner img:hover {
    opacity: 0.9;
}

.ad-header.ad-banner {
    margin-top: 0;
    border-top: none;
    padding-top: 12px;
    background: #fff;
    border-bottom-color: var(--border-color);
}

.ad-footer.ad-banner {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 12px;
    background: var(--bg-footer);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.ad-content.ad-banner {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ad-normal {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.ad-normal img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    transition: opacity var(--transition);
}

.ad-normal img:hover {
    opacity: 0.85;
}

.ad-sidebar.ad-normal {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 8px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .ad-banner {
        padding: 10px 0;
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }
    .ad-banner img {
        max-width: 100% !important;
        height: auto !important;
    }
}


/* ---- Responsive Helpers ---- */
@media (max-width: 575.98px) {
    .hero-section h1 { font-size: 1.5rem; }
    .card-post .card-img-top,
    .card-product .card-img-top,
    .card-project .card-img-top,
    .card-video .card-img-top { height: 160px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}


/* ============================================================
   CORPORATE (turnamak.com inspired)
   ============================================================ */
/* ---- CSS Variables ---- */
.corp-root {
    --corp-bg: #050505;
    --corp-bg-2: #0f172a;
    --corp-card: #1e293b;
    --corp-text: #e2e8f0;
    --corp-muted: #94a3b8;
    --corp-accent: #ffb600;
    --corp-accent-soft: #ff9a4d;
    --corp-btn-bg: #1e293b;
    --corp-btn-hover: var(--bs-orange);
}

/* ===== TOP BAR ===== */
.corp-top-bar {
    background: #050505;
    color: #94a3b8;
    font-size: 13px;
    position: relative;
    z-index: 1000;
    padding: 6px 0;
}
.corp-top-bar .corp-address {
    font-size: 13px;
}
.corp-top-bar .corp-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    margin-left: 6px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.corp-top-bar .corp-social a.corp-social-fb { background: linear-gradient(135deg,#1877f2,#0d5ab5); }
.corp-top-bar .corp-social a.corp-social-ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.corp-top-bar .corp-social a.corp-social-tw { background: #000; }
.corp-top-bar .corp-social a.corp-social-li { background: linear-gradient(135deg,#0a66c2,#004182); }
.corp-top-bar .corp-social a:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.corp-top-bar .corp-lang a {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    margin-left: 4px;
}
.corp-top-bar .corp-lang a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px #ede6e3;
}
.corp-top-bar .corp-lang img {
    height: 22px;
    display: block;
    margin-left: 8px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

/* ===== HEADER STICKY WRAPPER ===== */
#siteHeader,
.corp-header-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}
#siteHeader.is-sticky {
    position: fixed;
}

/* ===== HEADER LOGO ROW ===== */
.corp-header-row {
    background: #e2e8f0;
}
.corp-header-row .corp-logo img {
    max-height: 60px;
}
.corp-header-row .corp-contact-info {
    font-size: 13px;
}
.corp-header-row .corp-contact-info .fw-bold {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ===== NAVBAR ===== */
.corp-navbar {
    background: #0a0a0f;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-family: 'Inter', sans-serif;
}
.corp-navbar .container {
    display: flex;
    align-items: center;
}
.corp-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    padding: 0.7rem 0;
}
.corp-navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,.65);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 1.1rem;
    transition: color .2s ease;
    position: relative;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.corp-navbar .navbar-nav .nav-link:hover,
.corp-navbar .navbar-nav .nav-link.active {
    color: #fff;
}
.corp-navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 0;
    height: 2.5px;
    background: #ffb600;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.corp-navbar .navbar-nav .nav-link:hover::before,
.corp-navbar .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}
/* Dropdown caret */
.corp-navbar .nav-item.dropdown > .nav-link {
    padding-right: 1.8rem;
}
.corp-navbar .nav-link.dropdown-toggle::after {
    border: none !important;
    content: "\f282" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 0.55rem !important;
    position: absolute !important;
    right: 0.7rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform .2s ease !important;
    vertical-align: baseline !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline !important;
    background: none !important;
    line-height: 1 !important;
    left: auto !important;
    bottom: auto !important;
}
.corp-navbar .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg) !important;
}
.corp-navbar .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}
/* Dropdown hover - desktop */
@media (min-width: 992px) {
    .corp-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        animation: navFadeIn .25s ease forwards;
    }
    .corp-navbar .nav-item.dropdown {
        position: relative;
    }
}
.corp-navbar .dropdown-menu {
    background: #111118;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 6px;
    min-width: 210px;
    margin-top: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.corp-navbar .dropdown-item {
    padding: 8px 14px 8px 18px;
    color: rgba(255,255,255,.7);
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all .25s ease;
    position: relative;
    background: linear-gradient(to right, rgba(255,182,0,.08) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}
.corp-navbar .dropdown-item:hover {
    color: #fff;
    background-position: left bottom;
}
.corp-navbar .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: #ffb600;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform .2s ease;
}
.corp-navbar .dropdown-item:hover::before {
    transform: scaleY(1);
}
.corp-navbar .dropdown-submenu {
    position: relative;
}
.corp-navbar .dropdown-submenu > .dropdown-menu {
    top: -6px;
    left: 100%;
    margin-left: 4px;
    margin-top: 0;
}
.corp-navbar .dropdown-submenu > .dropdown-toggle::after {
    content: "\f285";
    font-family: "bootstrap-icons";
    border: none;
    float: right;
    margin-top: 3px;
    vertical-align: 0;
}
.corp-navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
/* Hamburger */
.corp-navbar .navbar-toggler {
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}
.corp-navbar .navbar-toggler:focus {
    box-shadow: none;
}
.corp-navbar .navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    transition: all .3s ease;
}
.corp-navbar .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.corp-navbar .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.corp-navbar .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* User avatar */
.corp-navbar .user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ffb600,#f59e0b);
    color: #0a0a0f;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Mobile search icon */
.corp-navbar .mobile-search {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    padding: 0.5rem;
}
.corp-navbar .mobile-search:hover {
    color: #fff;
}
/* Search toggle */
.corp-navbar .search-toggle {
    font-size: 1rem;
    padding: 0.85rem 0.6rem 0.85rem 1rem;
}
.corp-navbar .navbar-nav .nav-link .bi-house-fill {
    font-size: 1.15rem;
    vertical-align: -2px;
}
/* Mobile */
@media (max-width: 991.98px) {
    .corp-navbar .navbar-nav .nav-link {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .corp-navbar .navbar-nav .nav-link::after { display: none; }
    .corp-navbar .navbar-nav .nav-link:hover {
        color: #ffb600;
    }
    .corp-navbar .dropdown-menu {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0 0 0 0.75rem;
        margin-top: 0;
        box-shadow: none;
    }
    .corp-navbar .dropdown-item {
        color: rgba(255,255,255,.5);
        padding: 6px 12px;
        border-radius: 0;
    }
    .corp-navbar .dropdown-item:hover {
        color: #fff;
        background: transparent;
    }
    .corp-navbar .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 0;
        padding-left: 0.75rem;
    }
    .corp-navbar .dropdown-submenu > .dropdown-toggle::after {
        display: none;
    }
    .corp-navbar .user-dropdown .dropdown-menu {
        padding: 6px;
    }
    .corp-navbar .user-dropdown .dropdown-item {
        border-radius: 8px;
        padding: 8px 12px;
    }
    .corp-navbar .user-dropdown .dropdown-item:hover {
        background: rgba(255,255,255,.06);
    }
}

/* ===== HERO SLIDER (Split Layout) ===== */
.corp-hero-slide {
    min-height: 550px;
    background: var(--shadow-dark);;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.corp-hero-text-area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 550px;
    padding: 60px 80px 60px 60px;
    /* background: linear-gradient(135deg,#050505 0%,#0f172a 100%); */
}
.corp-hero-text-box {
    max-width: 580px;
    padding: 50px 55px;
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
    box-shadow: 0 10px 20px #94a3b8;
}
.corp-hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    line-height: 1.08;
}
.corp-hero-subtitle {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}
.corp-hero-text-area.text-dark .corp-hero-title {
    color: #0f172a;
}
.corp-hero-text-area.text-dark .corp-hero-subtitle {
    color: rgba(15,23,42,.72);
}
.corp-hero-text-area.text-dark .corp-hero-text-box {
    background: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.3);
}
.corp-hero-text-area.text-dark .corp-hero-btn {
    background: #0f172a;
    color: #fff;
}
.corp-hero-text-area.text-dark .corp-hero-btn:hover {
    background: #1e293b;
}
.corp-hero-btn-area {
    margin-top: 32px;
}
.corp-hero-btn {
    border: 0;
    padding: 15px 36px;
    border-radius: 12px;
    background: rgba(30,41,59,.8);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    transition: all .35s ease;
    text-decoration: none;
    display: inline-block;
}
.corp-hero-btn:hover {
    transform: translateY(-3px);

    transition: .35s ease;
    background: linear-gradient(135deg,#ffb600,#ff9a00);
    box-shadow: 0 15px 30px #1e293b;
    color: #e2e8f0;
}
.corp-hero-image-area {
    position: relative;
    height: 100%;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 30px;
}
.corp-hero-image-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #050505 0%, transparent 35%);
    pointer-events: none;
}
.corp-hero .carousel-control-prev,
.corp-hero .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,41,59,.8);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.08);
    opacity: 1;
    transition: all .3s;
}
.corp-hero .carousel-control-prev:hover,
.corp-hero .carousel-control-next:hover {
    background: #ffb600;
    border-color: #ffb600;
}
.corp-hero .carousel-control-prev { left: 30px; }
.corp-hero .carousel-control-next { right: 30px; }

@media (max-width: 991px) {
    .corp-hero-slide {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .corp-hero-image-area {
        order: -1;
        min-height: 280px;
        height: 280px;
        clip-path: none;
    }
    .corp-hero-text-area {
        width: 100%;
        min-height: auto;
        padding: 30px 20px 50px;
        justify-content: center;
    }
    .corp-hero-text-box {
        max-width: 100%;
        padding: 30px 24px;
    }
    .corp-hero-title { font-size: 34px; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
    .corp-hero-subtitle { font-size: 15px; line-height: 1.7; }
    .corp-hero-btn-area { margin-top: 22px; }
    .corp-hero-btn { width: 100%; text-align: center; padding: 13px 20px; }
    .corp-hero .carousel-control-prev,
    .corp-hero .carousel-control-next { display: none; }
    .corp-hero .carousel-indicators { bottom: 12px; }
}

/* ===== SECTION TITLE ===== */
.corp-section {
    padding: 60px 0;
    background: #050505;
}
.corp-section-light {
    background: #f8fafc;
}
.corp-section .container {
    background: transparent;
    border-radius: 0;
    padding-top: 0;
}
.corp-sec-title {
    position: relative;
    display: block;
    text-align: center;
}
.corp-sec-title .corp-sub-title {
    position: relative;
    display: inline-block;
}
.corp-sec-title .corp-round-one {
    position: absolute;
    top: 20px;
    left: -25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}
.corp-sec-title .corp-round-one::before {
    position: absolute;
    top: 3px;
    left: -32px;
    width: 25px;
    height: 2px;
    background: #e2e8f0;
    content: "";
}
.corp-sec-title .corp-round-two {
    position: absolute;
    top: 20px;
    right: -25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}
.corp-sec-title .corp-round-two::before {
    position: absolute;
    top: 3px;
    right: -32px;
    width: 25px;
    height: 2px;
    background: #e2e8f0;
    content: "";
}
.corp-sec-title .corp-title-text {
    font-weight: 900;
    font-size: 36px;
    line-height: 46px;
    margin: 0;
    color: #e2e8f0;
    text-shadow: 1px 1px 0 #999, 2px 2px 0 #888, 3px 3px 0 #777, 4px 4px 0 #666, 5px 5px 0 #555;
}
.corp-sec-title .corp-sub-link {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 20px;
    font-weight: 300;
}
.corp-sec-title .corp-sub-link a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: bold;
}
.corp-sec-title .corp-sub-link a:hover {
    color: var(--bs-orange);
    transition: .4s;
}
.corp-section-bg {
    background-color: #f8fafc;
    border-radius: 15px 15px 0 0;
    padding: 20px 15px;
}
.corp-section-light .corp-section-bg {
    background-color: #fff;
}
.corp-section-light .corp-sec-title .corp-title-text {
    color: #050505;
}

/* ===== SERVICE CARD (ts-card style) ===== */
.corp-service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.corp-service-list .corp-service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: all .25s ease;
    border: 1px solid #f1f3f5;
}
.corp-service-list .corp-service-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    border-color: #ffb600;
}
.corp-service-list .corp-service-img {
    flex: 0 0 60px;
}
.corp-service-list .corp-service-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.corp-service-list .corp-service-body {
    flex: 1;
    min-width: 0;
}
.corp-service-list .corp-service-body h5 {
    font-size: 15px;
    margin: 0 0 6px;
    font-weight: 600;
}
.corp-service-list .corp-service-body h5 a {
    text-decoration: none;
    color: #222;
    transition: color .2s;
}
.corp-service-list .corp-service-body h5 a:hover {
    color: #d97706;
}
.corp-service-list .corp-service-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #666;
}
.corp-service-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 8px;
    font-size: 24px;
    color: #ffb600;
}
.corp-service-center-placeholder {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    border-radius: 12px;
    font-size: 80px;
    color: rgba(255,255,255,.2);
}
.corp-service-center-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}
.corp-service-center-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* ===== PRODUCT/PROJECT/NEWS CARD ===== */
.corp-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.corp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.1);
}
.corp-card-img-wrap {
    position: relative;
    background: #eef1f5;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}
.corp-card-img-inner {
    overflow: hidden;
    border-radius: 4px;
}
.corp-card-img-wrap img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.corp-card:hover .corp-card-img-wrap img {
    transform: scale(1.05);
}
.corp-card .card-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.corp-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.corp-card .card-title a {
    text-decoration: none;
    color: #1a1a2e;
    transition: color .2s;
}
.corp-card .card-title a:hover {
    color: #48729c;
}
.corp-card .card-text {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 12px;
}
.corp-card .btn {
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    background: #1e293b !important;
    color: #fff !important;
    border: none !important;
    transition: background .2s;
    align-self: flex-start;
}
.corp-card .btn:hover {
    background: #48729c !important;
}
.corp-card-video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    pointer-events: none;
}
.corp-card-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(72,114,156,.92);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 5px;
    letter-spacing: .5px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 10px 20px var(--text-muted) !important;
}
/* ===== NETFLIX-STYLE REFERENCE SLIDER ===== */
.corp-ref-slider-wrap {
    position: relative;
}
.corp-ref-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 5px;
}
.corp-ref-slider::-webkit-scrollbar { display: none; }
.corp-ref-card {
    width: 260px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .35s;
    flex-shrink: 0;
}
.corp-ref-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    transition: .35s;
}
.corp-ref-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(179,175,175,.9), transparent 60%);
    opacity: 0;
    transition: .35s;
    z-index: 1;
}
.corp-ref-card-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: .35s;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.corp-ref-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #ffb600;
    font-size: 2rem;
    font-weight: 700;
}
.corp-ref-card:hover {
    transform: scale(1.15);
    z-index: 5;
}
.corp-ref-card:hover img { transform: scale(1.08); }
.corp-ref-card:hover::before { opacity: 1; }
.corp-ref-card:hover .corp-ref-card-content {
    opacity: 1;
    transform: translateY(0);
}
.corp-ref-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 120px;
    border: none;
     background: rgba(0,0,0,.85);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 20;
    transition: .3s;
    backdrop-filter: blur(4px);
    
}
.corp-ref-btn:hover {box-shadow: 0 15px 30px #1e293b; background: rgba(30,41,59,.8);}
.corp-ref-prev { left: 0; border-radius: 0 14px 14px 0; }
.corp-ref-next { right: 0; border-radius: 14px 0 0 14px; }

/* ---- References Page Grid ---- */
.corp-ref-card-static {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    border: 1px solid #f1f3f5;
    transition: all .25s ease;
    text-align: center;
}
.corp-ref-card-static:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
    border-color: #ffb600;
}
.corp-ref-card-static img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}
.corp-ref-card-static .corp-ref-card-fallback {
    height: 140px;
    font-size: 2rem;
}
.corp-ref-card-static-name {
    padding: 10px 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    border-top: 1px solid #f1f3f5;
}

/* ===== STATS ===== */
.corp-stat-item {
    text-align: center;
    padding: 20px;
}
.corp-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffb600;
    line-height: 1;
    margin-bottom: .5rem;
}
.corp-stat-label {
    font-size: .9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}

/* ===== ABOUT ===== */
.corp-about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
}
.corp-about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg,#e2e8f0,#cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.corp-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== VALUE BOX ===== */
.corp-value-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.4rem;
    transition: all .25s ease;
}
.corp-value-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    border-color: #ffb600;
}
.corp-value-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    color: #d97706;
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: .85rem;
}

/* ===== FOOTER ===== */
.corp-footer {
    background: #000;
    color: #cfcfcf;
    position: relative;
    overflow: hidden;
}
.corp-footer a { text-decoration: none; transition: .3s; }
.corp-footer-main { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.corp-footer .widget-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.corp-footer .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ffb600;
    border-radius: 20px;
}
.corp-footer .footer-about { line-height: 1.8; font-size: 15px; color: #a1a1aa; }
.corp-footer .footer-about a { color: #fff; font-weight: 600; }
.corp-footer .footer-about a:hover { color: #ffb600; }
.corp-footer .footer-logo { max-width: 180px; margin-bottom: 20px; }
.corp-footer .footer-social { margin-top: 30px; }
.corp-footer .footer-social ul { display: flex; gap: 12px; padding: 0; margin: 0; list-style: none; }
.corp-footer .footer-social a {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #111; color: #fff; font-size: 18px;
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s ease;
}
.corp-footer .footer-social a:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: transparent;
}
.corp-footer .footer-social a.soc-fb:hover { background: #1877f2; color: #fff; }
.corp-footer .footer-social a.soc-ig:hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); color: #fff; }
.corp-footer .footer-social a.soc-tw:hover { background: #000; color: #fff; }
.corp-footer .footer-social a.soc-li:hover { background: #0a66c2; color: #fff; }
.corp-footer .working-hours { line-height: 2; color: #a1a1aa; font-size: 15px; }
.corp-footer .working-hours .wh-intro { margin-bottom: 8px; }
.corp-footer .working-hours .wh-intro i { color: #ffb600; margin-right: 8px; }
.corp-footer .working-hours .wh-schedule { list-style: none; padding: 0; margin: 0; }
.corp-footer .working-hours .wh-schedule li { padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.corp-footer .working-hours .wh-schedule li:last-child { border-bottom: none; }
.corp-footer .working-hours .wh-schedule i { color: #ffb600; margin-right: 8px; font-size: 12px; }
.corp-footer .list-arrow { list-style: none; padding: 0; margin: 0; }
.corp-footer .list-arrow li {
    margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.05); padding-bottom: 14px;
}
.corp-footer .list-arrow li:last-child { border: none; }
.corp-footer .list-arrow a {
    color: #bdbdbd; position: relative; padding-left: 18px; display: inline-block;
}
.corp-footer .list-arrow a::before {
    content: "\203A"; position: absolute; left: 0; color: #ffb600; font-size: 18px;
}
.corp-footer .list-arrow a:hover { color: #fff; transform: translateX(4px); }
.corp-footer .copyright { padding: 25px 0; background: #050505; }
.corp-footer .copyright-info { color: #7c7c7c; font-size: 14px; }
.corp-footer .footer-menu { text-align: right; }
.corp-footer .footer-menu ul { display: flex; justify-content: flex-end; gap: 20px; list-style: none; margin: 0; padding: 0; }
.corp-footer .footer-menu a { color: #8f8f8f; font-size: 14px; }
.corp-footer .footer-menu a:hover { color: #fff; }

@media(max-width:991px) {
    .corp-footer-main { padding: 50px 0 20px; }
    .corp-footer .footer-menu { text-align: left; margin-top: 15px; }
    .corp-footer .footer-menu ul { justify-content: flex-start; flex-wrap: wrap; }
}
@media(max-width:768px) {
    .corp-footer .widget-title { font-size: 22px; }
    .corp-footer .footer-social ul { flex-wrap: wrap; }
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 991px) {
    .hidden-mxw { display: none !important; }
    .corp-ref-card { min-width: 200px; height: 120px; }
    .corp-ref-card:hover { transform: scale(1.05); }
    .corp-ref-btn { width: 45px; height: 90px; }
}
@media (max-width: 767.98px) {
    .corp-sec-title .corp-title-text { font-size: 24px; line-height: 32px; }
    .corp-stat-number { font-size: 2rem; }
}

/* ============================================================
   TURNAMAK STILLERİ
   ============================================================ */

/* ---- Project Section ---- */
.project-section {
    width: 100%;
}
.project-section .section-bg {
    background: #f8fafc;
    border-radius: 15px;
}
.project-section .section-title-bg {
    background: transparent;
}

/* ---- Sec Title (Banner) ---- */
.project-section .sec-title {
    position: relative;
    display: block;
    text-align: center;
}
.project-section .sub-title {
    position: relative;
    display: inline-block;
}
.project-section .round-one {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
}
.project-section .round-one::before {
    position: absolute;
    top: 3px;
    left: -35px;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,.3);
    content: "";
}
.project-section .round-two {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
}
.project-section .round-two::before {
    position: absolute;
    top: 3px;
    right: -35px;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,.3);
    content: "";
}
.project-section .section-title {
    font-weight: 900;
    font-size: 36px;
    line-height: 46px;
    margin: 0;
    color: #fff;
}
.project-section .section-title.yazi-3d {
    color: var(--text-primary);
    text-shadow: 1px 1px 0 #999, 2px 2px 0 #888, 3px 3px 0 #777, 4px 4px 0 #666, 5px 5px 0 #555;
}
.project-section .section-sub-title {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 20px;
    font-weight: 300;
}
.project-section .section-sub-title a.section-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: bold;
}
.project-section .section-sub-title a.section-link:hover {
    color: #ffb600;
    transition: .4s;
}

/* ---- Breadcrumb ---- */
.fgpage-breadcrumb,
.project-section .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 15px;
    background: transparent;
}
.fgpage-breadcrumb li,
.project-section .breadcrumb li {
    display: inline;
    color: rgba(255,255,255,.7);
}
.fgpage-breadcrumb li + li::before,
.project-section .breadcrumb li + li::before {
    content: "/\00a0";
    color: rgba(255,255,255,.4);
    padding: 0 5px;
}
.fgpage-breadcrumb a,
.project-section .breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
.fgpage-breadcrumb a:hover,
.project-section .breadcrumb a:hover {
    color: #ffb600;
}

/* ---- Product Page Layout ---- */
.product-page {
    width: 100%;
}
.product-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}
.product-gallery {
    width: 100%;
}
.product-sidebar {
    width: 40%;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}
.product-sidebar-dark {
    background: #1e293b;
    padding: 20px;
    border-radius: 5px;
    color: #e2e8f0;
}

/* ---- Gallery ---- */
.product-gallery .main-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    cursor: zoom-in;
    background: #f1f3f5;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    border-radius: 5px 5px 0 0;
}
.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-gallery .main-image:hover img {
    transform: scale(1.3);
}
.product-gallery .thumbs {
    display: flex;
    gap: 10px;
    margin-top: 0;
    overflow-x: auto;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    border-radius: 0 0 5px 5px;
}
.product-gallery .thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    opacity: .6;
    transition: all .3s;
    flex-shrink: 0;
}
.product-gallery .thumbs img:hover,
.product-gallery .thumbs img.active {
    opacity: 1;
    border: 1px solid #ffb600;
}

/* ---- Lightbox ---- */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
}
#lightbox.active {
    display: flex;
}
#lightbox #lightImg {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
#lightbox .lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}
#lightbox .lb-close:hover {
    color: #ffb600;
}
#lightbox .lb-prev,
#lightbox .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-btn);
    border: none;
    color: #fff;
    width: 50px;
    height: 70px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    transition: .3s;
    box-shadow: 0 10px 20px var(--text-muted);
}
#lightbox .lb-prev:hover,
#lightbox .lb-next:hover {
    background: #ffb600;
}
#lightbox .lb-prev { left: 20px; }
#lightbox .lb-next { right: 20px; }

/* ---- Sidebar Meta Widgets (Projects / Products) ---- */
.fgps-widget-meta {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.fgps-widget-meta:last-child {
    border-bottom: none;
}
.fgps-widget-meta h5 {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fgps-widget-meta .clients-name span,
.fgps-widget-meta .file-size {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 15px;
}

/* ---- Sidebar Box (Services list) ---- */
.sidebar-box {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 18px;
    background: #f5f5f5;
}
.sidebar-box h3 {
    position: relative;
    margin: 0 0 25px;
    padding-left: 18px;
    color: #111;
    font-size: 26px;
    font-weight: 700;
}
.sidebar-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffb600;
    transform: translateY(-50%);
}
.sidebar-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-box ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.sidebar-box ul li:last-child {
    border-bottom: none;
}
.sidebar-box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    transition: .3s ease;
}
.sidebar-box ul li a:hover,
.sidebar-box ul li a.active {
    color: #ffb600;
}

/* ---- Product Tabs ---- */
.product-tabs .tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: none;
}
.product-tabs .tab-btn {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #1e293b;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
    box-shadow: 0 10px 20px var(--text-muted);
}
.product-tabs .tab-btn::after {
    display: none;
}
.product-tabs .tab-btn:hover {
    background: #334155;
}
.product-tabs .tab-btn.active {
    background: #ffb600;
    color: #000;
}
.product-tabs .tab-btn.active::after {
    display: none;
}
.product-tabs .tab-content {
    display: none;
    padding: 20px;
    background: #1e293b;
    border-radius: 5px;
    animation: fadeIn .35s ease;
    color: var(--text-muted);
    box-shadow: 0 10px 20px #94a3b8;
}
.product-tabs .tab-content.active {
    display: block;
}
.product-tabs .tab-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #e2e8f0;
}

/* ---- Specs Grid ---- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.spec-item {
    padding: 15px;
    background: #111827;
    border-radius: 5px;
}
.spec-item span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 4px;
}
.spec-item strong {
    color: #e2e8f0;
    font-size: 15px;
}

/* ---- Video Box ---- */
.video-box .video-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.video-box .video-grid iframe,
.video-box .video-grid video {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
    object-fit: contain;
    background: #000;
}

/* ---- Product Card (similar / listing) ---- */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.product-card .product-img-wrapper {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}
.product-card .product-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .3s;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}
.product-card .ribbon {
    position: absolute;
    z-index: 3;
}
.product-card .ribbon-left {
    top: 10px;
    left: 10px;
    background: #ffb600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.product-card .videoEtiket {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
}
.product-card .card-body {
    padding: 16px;
}
.product-card .card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    min-height: 36px;
}
.product-card .btn-dark {
    background: #1e293b;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    padding: 8px 18px;
    transition: .2s;
}
.product-card .btn-dark:hover {
    background: #ffb600;
}

/* ---- Sidebar Subnav ---- */
.sidebar-subnav {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}
.sidebar-subnav li a {
    display: block;
    padding: 8px 15px 8px 25px;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: all .2s;
}
.sidebar-subnav li a:hover,
.sidebar-subnav li a.active {
    background: #eef2ff;
    color: #1e293b;
    font-weight: 600;
}
.sidebar-nav > li > a .bi-chevron-down {
    font-size: 12px;
    transition: transform .2s;
    margin-top: 3px;
}
.sidebar-nav > li:hover > a .bi-chevron-down {
    transform: rotate(180deg);
}
.sidebar-nav > li > .sidebar-subnav {
    display: none;
}
.sidebar-nav > li:hover > .sidebar-subnav {
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .product-layout {
        flex-direction: column;
    }
    .product-sidebar {
        width: 100%;
        position: static;
    }
    .product-gallery .main-image {
        height: 300px;
    }
    .video-box .video-grid iframe {
        height: 300px;
    }
    .project-section .section-title {
        font-size: 24px;
    }
    .project-section .breadcrumb {
        font-size: 13px;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .product-gallery .main-image {
        height: 250px;
    }
    .product-gallery .thumbs img {
        width: 50px;
        height: 50px;
    }
    .product-tabs .tab-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    .sidebar-box {
        padding: 20px;
    }
    .sidebar-box ul li a {
        padding: 14px 0;
        font-size: 15px;
    }
}

/* ---- Additional Corporate Improvements ---- */
.corp-section {
    position: relative;
    overflow: hidden;
}
.corp-section::before {
    display: none;
}
.corp-section-light {
    position: relative;
}
.corp-section-light::after {
    display: none;
}
.corp-section .corp-sec-title {
    margin-bottom: 45px;
}
.corp-section-light .corp-sec-title .corp-title-text {
    color: #050505;
    text-shadow: 1px 1px 0 #ddd, 2px 2px 0 #ccc, 3px 3px 0 #bbb, 4px 4px 0 #aaa, 5px 5px 0 #999;
}

.corp-card-ribbon {
    position: absolute;
    top: 21px;
    left: -30px;
    width: 130px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 0;
    z-index: 5;
    box-shadow: 0 10px 20px var(--bg-btn) !important;
    letter-spacing: .5px;
    background: #48729c;
    transform: rotate(-45deg);
    pointer-events: none;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section fade-in on load */
.corp-section {
    animation: corpFadeIn .6s ease forwards;
    opacity: 0;
}
.corp-section:nth-child(2) { animation-delay: .1s; }
.corp-section:nth-child(3) { animation-delay: .2s; }
.corp-section:nth-child(4) { animation-delay: .3s; }
.corp-section:nth-child(5) { animation-delay: .4s; }

@keyframes corpFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Page Banner (turnamak style) ---- */
.page-banner {
    background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3e 50%, #0c0c1e 100%);
    padding: 50px 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.06) 0%, transparent 50%);
    pointer-events: none;
}
.page-banner .sec-title {
    position: relative;
    display: block;
    text-align: center;
}
.page-banner .sub-title {
    position: relative;
    display: inline-block;
}
.page-banner .round-one {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
}
.page-banner .round-one::before {
    position: absolute;
    top: 3px;
    left: -35px;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,.3);
    content: "";
}
.page-banner .round-two {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
}
.page-banner .round-two::before {
    position: absolute;
    top: 3px;
    right: -35px;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,.3);
    content: "";
}
.page-banner .section-title {
    font-weight: 900;
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: 2px;
}
.page-banner .fgpage-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 14px;
}
.page-banner .fgpage-breadcrumb li {
    display: inline;
    color: rgba(255,255,255,.6);
}
.page-banner .fgpage-breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255,255,255,.4);
}
.page-banner .fgpage-breadcrumb li a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .2s;
}
.page-banner .fgpage-breadcrumb li a:hover {
    color: #f59e0b;
}
.page-banner .fgpage-breadcrumb li[aria-current="page"] {
    color: #f59e0b;
    font-weight: 600;
}

/* ---- Category Flip Cards (turnamak) ---- */
.row.cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.col {
    flex: 0 0 auto;
    perspective: 1000px;
    margin-bottom: 30px;
}
.col .containers {
    position: relative;
    width: 100%;
    height: 280px;
    transition: .6s ease;
    transform-style: preserve-3d;
}
.col:hover .containers,
.col.hover .containers {
    transform: rotateY(180deg);
}
.col .front,
.col .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.col .front .inner p {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    padding: 15px 20px;
    background: rgba(0,0,0,.35);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}
.col .back {
    background: linear-gradient(135deg, #0f0f2e 0%, #1a1a4e 100%);
    transform: rotateY(180deg);
}
.col .back .inner p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.col .back .inner p a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 30px;
    transition: .3s;
    font-size: 15px;
    letter-spacing: 1px;
}
.col .back .inner p a:hover {
    background: #ffb600;
    border-color: #ffb600;
    color: #000;
}

/* ---- Pagination ---- */
.fgpagination {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.fgpagination a,
.fgpagination span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    background: var(--shadow-dark) !important;
  box-shadow: 0 10px 20px var(--text-muted) !important;
}
.fgpagination a:hover {
    background: #1e293b;
    color: #fff;
    border-color: #1e293b;
}
.fgpagination span.active,
.fgpagination .current {
    background: #ffb600;
    border-color: #ffb600;
    color: var(--text-muted);
    font-weight: 600;
}
.fgpagination li.disabled a,
.fgpagination li.disabled span {
    opacity: .4;
    pointer-events: none;
    cursor: default;
  box-shadow: 0 10px 20px var(--text-muted) !important;
}
.section-bg {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

/* ---- Print ---- */
@media print {
    header, footer, .sidebar, .ad-banner, .ad-normal { display: none !important; }
    main { padding: 0; }
    body { background: #fff; }
}

/* ============================================================
   TURNAMAK İLETİŞİM (contact page)
   ============================================================ */

/* ---- CSS Variables for Contact Section ---- */
.project-section.contact-page {
    --muted: #222;
    --accent: #ffb600;
    --bs-light: #f8f9fa;
    --butonarkaplan: #1e293b;
    --accent-soft: #ff9a4d;
    --text: #333;
}

/* ---- Firma Başlık ---- */
.firma-baslik {
    position: relative;
    margin-bottom: 18px;
}
.firma-baslik h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-left: 22px;
    color: var(--muted, #222);
    font-size: 46px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .4px;
}
.firma-baslik h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 80%;
    border-radius: 20px;
    background: var(--accent, #ffb600);
    transform: translateY(-50%);
}
.col-md-12 > .firma-baslik {
    margin-top: 10px;
}

/* ---- Firma Bilgi ---- */
.firma-bilgi {
    max-width: 950px;
    margin-bottom: 14px;
    color: var(--muted, #222);
    font-size: 18px;
    line-height: 1.9;
    font-weight: 400;
}

/* ---- Contact Address Box ---- */
.fgcontact-address {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 7px;
    background: var(--bs-light, #f8f9fa);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .04);
}

/* ---- Contact Heading ---- */
.contact-heading {
    margin-bottom: 35px;
}
.contact-heading h4 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-left: 18px;
    color: var(--muted, #222);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .5px;
}
.contact-heading h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #ffb600);
    transform: translateY(-50%);
}

/* ---- Contact Address List ---- */
.fgcontact-address-list {
    row-gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fgcontact-address-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    transition: .35s ease;
}
.fgcontact-address-list li:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .04);
}

/* ---- Contact List Icon ---- */
.fgcontact-list-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent, #ffb600);
    color: #fff;
    font-size: 20px;
}

/* ---- Contact List Text ---- */
.fgcontact-list-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fgcontact-list-text span:first-child {
    color: var(--muted, #222);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.fgcontact-list-text span:last-child {
    color: var(--muted, #222);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}
.fgcontact-list-text a {
    color: var(--muted, #222);
    text-decoration: none;
    transition: .3s ease;
}
.fgcontact-list-text a:hover {
    color: var(--accent, #ffb600);
}

/* ---- Site Map ---- */
.site-map {
    position: relative;
    overflow: hidden;
    margin-top: 45px;
    border-radius: 7px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
}
.site-map iframe {
    display: block;
    width: 100%;
    height: 550px;
    border: none;
    filter: grayscale(.1);
}

/* ---- Contact Form Box ---- */
.contact-form-box {
    margin-top: 45px;
    padding: 40px;
    border-radius: 7px;
    background: var(--bs-light, #f8f9fa);
    border: 1px solid rgba(255, 255, 255, .04);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

/* ---- Contact Form Title ---- */
.contact-form-title {
    margin-bottom: 35px;
}
.contact-form-title h3 {
    margin: 0 0 12px;
    color: var(--muted, #222);
    font-size: 34px;
    font-weight: 800;
}
.contact-form-title p {
    margin: 0;
    color: var(--muted, #222);
    line-height: 1.8;
    font-size: 15px;
}

/* ---- Form Group ---- */
.contact-form .form-group {
    margin-bottom: 24px;
}
.contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted, #222);
    font-size: 14px;
    font-weight: 600;
}

/* ---- Form Controls ---- */
.contact-form .form-control {
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: none;
    outline: none;
    border-radius: 7px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, .05);
    color: var(--text, #333);
    font-size: 15px;
    transition: .3s ease;
}
.contact-form .form-control:focus {
    border-color: var(--accent, #ffb600);
    box-shadow: 0 0 0 4px rgba(255, 153, 77, .12);
}
.contact-form textarea.form-control {
    height: auto;
    min-height: 180px;
    padding: 18px;
    resize: none;
}
.contact-form .form-control::placeholder {
    color: #7b8794;
}

/* ---- Contact Submit Button ---- */
.contact-submit-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 7px;
    background: var(--butonarkaplan, #1e293b);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .35s ease;
}
.contact-submit-btn:hover {
    background: var(--accent-soft, #ff9a4d);
    transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media(max-width:992px) {
    .fgcontact-address { padding: 30px; }
    .contact-heading h4 { font-size: 28px; }
    .site-map iframe { height: 420px; }
}
@media(max-width:768px) {
    .fgcontact-address { padding: 22px; }
    .fgcontact-address-list li { padding: 18px; }
    .fgcontact-list-icon { width: 50px; height: 50px; min-width: 50px; font-size: 18px; }
    .contact-heading h4 { font-size: 24px; }
    .site-map iframe { height: 320px; }
    .contact-form-box { padding: 24px; }
    .contact-form-title h3 { font-size: 28px; }
    .contact-form .form-control { height: 54px; }
}
@media(max-width:576px) {
    .fgcontact-address-list li { flex-direction: column; }
    .fgcontact-list-icon { margin-bottom: 10px; }
    .site-map { border-radius: 7px; }
    .site-map iframe { height: 260px; }
    .contact-form-title h3 { font-size: 24px; }
    .contact-submit-btn { height: 54px; font-size: 15px; }
}

/* ---- Logo Image in Contact ---- */
.fghaber_detay_kucuk {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
}
.fghaber_detay_kucuk:hover {
    transform: scale(1.03);
}

/* ---- xs-mb-0px helper ---- */
.xs-mb-0px { margin-bottom: 0 !important; }

/* ---- fgservice-box helpers ---- */
.fgservice-box-single.fgmb-40.p-0 { margin-bottom: 0; }
.fgservice-box-content.st-1.p-0 { padding: 0; }

/* ---- fgentry-infos ---- */
.fgentry-infos .row { margin: 0; }
.fgentry-infos .col-12 { padding: 0; }

/* ============================================================
   GALERİ (gallery page)
   ============================================================ */

/* ---- Gallery Item Caption ---- */
.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    font-size: 12px;
    z-index: 2;
}
.gallery-item-caption a,
.gallery-item-caption span {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.gallery-item-caption a:hover {
    color: #ffb600;
}

/* ---- Video Play Overlay ---- */
.play-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 48px;
    color: #fff;
    opacity: .85;
    transition: opacity .3s, transform .3s;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.product-img-wrapper:hover .play-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ---- Video Thumb Placeholder ---- */
.video-thumb-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffb600;
    font-size: 48px;
}

/* ---- Gallery Image Grid Hover ---- */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
}
.product-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .3s ease;
}
.product-img-wrapper:hover img {
    transform: scale(1.08);
}

/* ---- Gallery Section Background ---- */
.section-bg .product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
}
.section-bg .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}
