/* ============================================
   Lumora Corporate Limited - Custom Styles
   ============================================ */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-hover: #c73652;
    --gold: #eb7c3a;
    --gold-light: #f0d78c;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", serif;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.5rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-current {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

.lang-option {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-option:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

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

.btn-primary-custom {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: var(--gold-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Floating Shapes */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--white);
    bottom: 20%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   Section Common
   ============================================ */
.section-padding {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
    padding: 0.35rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag-light {
    background: rgba(212, 168, 83, 0.15);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-right: 30px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Slider */
.about-slider-wrapper {
    position: relative;
    width: 100%;
}

.aboutSwiper {
    overflow: hidden;
    width: 100%;
}

.aboutSwiper .swiper-slide {
    width: 100% !important;
    display: flex;
    align-items: center;
}

.about-slide-content {
    padding: 0;
    width: 100%;
}

.about-tags {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.about-tag-dot {
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}

.about-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.about-swiper-pagination {
    position: static;
    display: flex;
    gap: 0.4rem;
}

.about-swiper-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #d5d5d5;
    opacity: 1;
    transition: var(--transition);
}

.about-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 40px;
}

.about-swiper-buttons {
    display: flex;
    gap: 0.6rem;
}

.about-swiper-prev,
.about-swiper-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d5d5d5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.9rem;
}

.about-swiper-prev:hover,
.about-swiper-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Values list */
.about-values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.about-value-item {
    padding-left: 0;
}

.about-value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-value-title i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ============================================
   Service Cards
   ============================================ */
.services-section {
    background: #fdf2ee;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2rem;
    transition: var(--transition);
    border: 1px solid #f0ddd6;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-content {
    flex: 1;
    min-width: 0;
}

.service-card-image {
    width: 200px;
    height: 168px;
    border-radius: 50% 50% 0 0;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-link:hover {
    color: var(--accent-hover);
    gap: 0.5rem;
}

.service-title-zh {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.15rem;
}

.service-desc-zh {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Service Modal */
.service-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-modal-close:hover {
    background: var(--gold);
    color: var(--white);
}

.service-modal-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-modal-body {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.service-modal-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    text-align: right;
}

.projects-filter-select {
    max-width: 320px;
}

.service-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.4;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.service-modal-text p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-modal-zh {
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
    line-height: 1.9;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

/* ============================================
   Work / Case Study Section (Swiper)
   ============================================ */
.work-section {
    background: var(--white);
}

.work-swiper-wrapper {
    position: relative;
    padding: 0 50px;
}

.workSwiper {
    overflow: hidden;
}

.workSwiper .swiper-slide {
    height: auto;
}

a.work-card-wrap,
.work-card-wrap {
    height: 100%;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.work-card {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e0da;
    cursor: pointer;
}

.work-card-label {
    position: absolute;
    bottom: 30px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.9rem 1.2rem;
    z-index: 1;
    height:68px;
}

.work-card-label h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.work-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, #00000075 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    height: 100%;
    z-index:3;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-overlay p{
    color: var(--white);

}

.work-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.work-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
}

.work-link:hover {
    color: var(--gold);
    gap: 0.6rem;
}

/* Text-only card */
.work-card-text {
    background: var(--white);
    border: 1px solid #eee;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-text-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.work-text-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.work-link-dark {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.work-link-dark:hover {
    color: var(--gold);
    gap: 0.6rem;
}

/* Swiper navigation buttons */
.workSwiper .swiper-button-prev,
.workSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.workSwiper .swiper-button-prev::after,
.workSwiper .swiper-button-next::after {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.workSwiper .swiper-button-prev:hover,
.workSwiper .swiper-button-next:hover {
    background: var(--gold);
}

.workSwiper .swiper-button-prev:hover::after,
.workSwiper .swiper-button-next:hover::after {
    color: var(--white);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-info {
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-info-item h5 {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item p,
.contact-info-item a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    background:var(--gold);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 168, 83, 0.15);
}

.contact-form .form-floating label {
    color: var(--text-light);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.contact-form .form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.contact-form .invalid-feedback {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-brand-row > .img-fluid {
    max-height: 40px;
    width: auto;
}

@media (min-width: 992px) {
    .footer-brand-row {
        justify-content: flex-start;
    }
}

.footer-badge {
    height: 38px;
    width: auto;
    border-radius: 4px;
    padding: 2px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 168, 83, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card animations */
.service-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}



#home.hero-section{
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   Projects Page
   ============================================ */
.projects-hero {
    padding: 160px 0 80px;
    background: var(--primary);
    text-align: center;
}

.projects-hero .section-title {
    color: var(--white);
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.project-back-link:hover {
    color: var(--gold);
}

/* Project Cards (listing page) */
.project-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.project-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

.project-card-body {
    padding: 1.2rem 1.4rem;
}

.project-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.project-card-count {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.project-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.05);
}

.project-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
    z-index: 2;
    line-height: 1.35;
    pointer-events: none;
}

.project-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.project-gallery-item:hover .project-gallery-overlay {
    opacity: 1;
}

.project-gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-caption {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90vw;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    padding: 0 1rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .nav-link::after {
        left: 1rem;
        transform: none;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 30px;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        justify-content: center;
    }

    .work-card {
        height: 320px;
    }

    .project-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        flex-direction: row;
        padding: 1.5rem;
    }

    .service-card-image {
        width: 100px;
        height: 100px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .work-card {
        height: 280px;
    }

    .work-swiper-wrapper {
        padding: 0 40px;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }

    .work-card {
        height: 260px;
    }

    .work-swiper-wrapper {
        padding: 0 35px;
    }
    .navbar-brand > img{
        width:288px;
        height:auto;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
