/* =============================================
   GETA Dekorasyon - Ana Stil Dosyası
   Renk Teması: Kırmızı/Bordo + Metalik Gri
   ============================================= */

/* CSS Variables */
:root {
    --primary: #B22222;
    --primary-dark: #8B0000;
    --primary-light: #CD5C5C;
    --metallic: #71797E;
    --metallic-light: #A9A9A9;
    --metallic-dark: #4A4A4A;
    --steel: #43464B;
    --dark: #1C1C1C;
    --charcoal: #2B2B2B;
    --light: #F4F4F4;
    --silver: #C0C0C0;
    --white: #FFFFFF;
    --text: #1C1C1C;
    --text-light: #5A5A5A;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top a {
    color: var(--silver);
}

.header-top a:hover {
    color: var(--primary-light);
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.header-main {
    padding: 15px 0;
    background: var(--white);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
}

.logo-text span {
    font-size: 11px;
    color: var(--metallic);
    display: block;
    margin-top: -2px;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 5px;
}

nav ul li a {
    padding: 12px 22px;
    font-weight: 600;
    color: var(--text);
    border-radius: 5px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
    background: var(--light);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--steel) 50%, var(--metallic-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 115px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(28,28,28,0.8), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .tagline {
    font-size: 16px;
    color: var(--silver);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--silver);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* =============================================
   SECTIONS
   ============================================= */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 25px auto 0;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 25px 60px var(--shadow-dark);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--primary);
    border-radius: 10px;
    z-index: -1;
}

.about-image .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.3);
}

.about-image .experience-badge h3 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.about-image .experience-badge span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary);
    color: var(--white);
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-item span {
    font-weight: 600;
    font-size: 14px;
}

/* Services Section */
.services {
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 25px var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--metallic));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-dark);
}

.service-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.3);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* References Section */
.references {
    background: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.reference-item {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.reference-item:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.reference-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.reference-item span {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* Brands Section */
.brands {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    padding: 60px 0;
}

.brands h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 600;
}

.brands-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-slider span {
    color: var(--silver);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.brands-slider span:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-outline {
    border-color: var(--white);
}

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

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px var(--shadow);
}

.contact-info-box h3 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 35px;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item .icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.25);
}

.info-item .details h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-item .details p,
.info-item .details a {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.info-item .details a:hover {
    color: var(--primary);
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px var(--shadow);
}

.contact-form-box h3 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 35px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.1);
}

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

/* Map */
.map-section {
    padding: 0;
    margin-top: 80px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(30%);
}

/* =============================================
   PAGE HEADERS
   ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--steel) 50%, var(--metallic-dark) 100%);
    padding: 160px 0 100px;
    text-align: center;
    color: var(--white);
    margin-top: 115px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--silver);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: var(--primary-light);
    font-weight: 700;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact p i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    nav.active {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    .hero {
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image::before {
        display: none;
    }

    .about-image .experience-badge {
        right: 20px;
        bottom: -20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        margin-top: 80px;
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        justify-content: center;
    }

    .contact-info {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 550px;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .tagline {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    section {
        padding: 70px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }

    .footer-contact p {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card .icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .logo-text h1 {
        font-size: 26px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* =============================================
   LIGHTBOX GALLERY
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    user-select: none;
}

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

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 16px;
}

.lightbox-title {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--silver);
    font-size: 18px;
    white-space: nowrap;
}

/* Reference item clickable */
.reference-item.has-gallery {
    cursor: pointer;
}

.reference-item.has-gallery:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.reference-item.has-gallery::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary);
    font-size: 14px;
}

.reference-item {
    position: relative;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
}
