@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800&display=swap&subset=latin-ext');

:root {
    --primary-color: #6ee89b;
    --secondary-color: #1a2f7a;
    --accent-color: #1a6b32;
    --accent-hover: #145527;
    --bright-blue: #1a4fd6;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --text-dark: #e0e7ff;
    --bg-light: transparent;
    --bg-white: rgba(10, 15, 46, 0.6);
    --navy-soft: #162460;
    --green-soft: #1e8c42;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background:
        linear-gradient(135deg, #122f76 0%, #071437 46%, #031716 100%),
        linear-gradient(24deg, rgba(110, 232, 155, 0.12), transparent 48%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 28% 72%, rgba(180,210,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 44% 9%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(2px 2px at 61% 55%, rgba(200,220,255,0.85) 0%, transparent 100%),
        radial-gradient(1px 1px at 76% 31%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 14%, rgba(180,210,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 48%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 38%, rgba(200,230,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 80%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 70% 68%, rgba(180,210,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 82%, rgba(255,255,255,0.85) 0%, transparent 100%),
        radial-gradient(2px 2px at 18% 91%, rgba(200,220,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 82% 46%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 48% 61%, rgba(180,230,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 28%, rgba(255,255,255,0.65) 0%, transparent 100%),
        radial-gradient(2px 2px at 24% 55%, rgba(200,220,255,0.75) 0%, transparent 100%),
        radial-gradient(1px 1px at 67% 88%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 22%, rgba(180,210,255,0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 8% 77%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 53% 44%, rgba(200,230,255,0.7) 0%, transparent 100%);
    animation: starTwinkle 3.5s ease-in-out infinite alternate;
    z-index: -2;
    filter: brightness(1.8) drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

body::after {
    content: '';
    position: fixed;
    top: -10%;
    left: 15%;
    width: 70%;
    height: 55%;
    background: linear-gradient(105deg, transparent 10%, rgba(128, 176, 255, 0.12) 42%, rgba(110, 232, 155, 0.07) 55%, transparent 78%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite alternate;
    z-index: -1;
    filter: brightness(1.5);
}

img:not(.brand-logo), video {
    border: 3px solid #1a6b32 !important;
    border-radius: 8px !important;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(26, 107, 50, 0.5);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 79, 214, 0.24);
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0a0f2e 0%, #1a4fd6 58%, #1a6b32 155%);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.top-bar-left span {
    margin-right: 1.5rem;
    opacity: 0.9;
}

.top-bar-left i {
    color: var(--accent-color);
    margin-right: 5px;
}

.top-bar-right a {
    color: #ffffff;
    opacity: 0.7;
    margin: 0 5px;
    transition: var(--transition);
}

.top-bar-right a:hover,
.top-bar-right a.active {
    opacity: 1;
    color: #6ee89b;
}

.top-bar-right .lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    line-height: 1;
}

.top-bar-right .lang-toggle.active {
    border-color: rgba(110, 232, 155, 0.7);
    background: rgba(110, 232, 155, 0.14);
}

/* Navbar */
header {
    background-color: #03081a;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 36px;
    z-index: 1000;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(4, 11, 38, 0.18);
    transition: all 0.3s ease;
}

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

.logo {
    color: var(--text-light);
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1001;
}

.brand-logo {
    height: 58px;
    width: 58px;
    object-fit: cover;
    border-radius: 50% !important;
    border: 3px solid #03081a !important;
}

.brand-logo-home {
    height: 64px;
    width: 64px;
    border-radius: 50% !important;
    border: 3px solid #03081a !important;
}

.brand-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-color);
}

.footer-logo {
    margin-bottom: 1rem;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-contact-link {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-color), #258f45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.nav-contact-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--accent-color), var(--bright-blue));
}

.nav-links > a::after,
.dropdown > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links > a:hover::after,
.dropdown:hover > a::after {
    width: 100%;
}

.nav-links a:hover,
.dropdown:hover > a {
    color: var(--accent-color);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1002;
    top: 100%;
    left: 0;
    border-radius: 4px;
    overflow: hidden;
    border-top: 3px solid var(--accent-color);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    text-transform: none;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-light);
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 170px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.hero-slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-slider-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 8, 26, 0.88) 0%, rgba(10, 25, 70, 0.72) 40%, rgba(10, 50, 30, 0.65) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 850px;
    animation: fadeIn 1s ease-out;
}

.hero-kicker {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(110, 232, 155, 0.15);
    border: 1px solid rgba(110, 232, 155, 0.35);
    color: #6ee89b;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInSlogan 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.5);
    line-height: 1.15;
}

.hero h1 span {
    color: #6ee89b;
    text-shadow: 0 0 30px rgba(110, 232, 155, 0.4), 0 4px 20px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    max-width: 700px;
    line-height: 1.7;
}

.hero-content .hero-kicker,
.hero-content h1,
.hero-content p {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content.slide-changing .hero-kicker,
.hero-content.slide-changing h1,
.hero-content.slide-changing p {
    opacity: 0;
    transform: translateY(15px);
}

.hero-contact-btn {
    background-color: #1f8f45;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

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

.gallery-section {
    background: transparent;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro p {
    color: var(--text-muted);
    font-size: 1.08rem;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(26, 107, 50, 0.12);
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.gallery-block {
    margin-top: 3rem;
}

.gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(110, 232, 155, 0.24);
}

.gallery-heading span {
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-heading h2 {
    color: var(--text-light);
    font-size: 1.65rem;
    text-align: right;
}

.gallery-grid,
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.gallery-teaser {
    background: transparent;
}

.gallery-teaser-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 1.25rem;
}

.gallery-preview-stack {
    display: grid;
    gap: 1.25rem;
}

.gallery-preview-stack img,
.gallery-strip img,
.gallery-photo img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #06122f;
}

.gallery-preview-stack img {
    min-height: 180px;
    aspect-ratio: 16 / 9;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 1.25rem 0 2rem;
}

.gallery-strip img {
    aspect-ratio: 4 / 3;
}

.gallery-card {
    background: rgba(6, 18, 47, 0.72);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(110, 232, 155, 0.16);
    backdrop-filter: blur(10px);
}

.media-card video {
    aspect-ratio: 16 / 9;
    min-height: 270px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-photo {
    min-height: 230px;
}

.gallery-photo img {
    aspect-ratio: 4 / 3;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-photo:hover img {
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.035);
}

.gallery-photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-photo-wide {
    grid-column: span 2;
}

.gallery-copy {
    padding: 1.15rem 1.2rem 1.25rem;
}

.gallery-copy h3 {
    color: var(--primary-color);
    margin-bottom: 0.45rem;
    font-size: 1.18rem;
}

.gallery-copy p {
    color: var(--text-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-intro {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.about-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Mission & Vision Cards */
.mv-section {
    background-color: var(--bg-light);
    padding-top: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--accent-color);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Documents Section */
.documents {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.documents .section-title {
    color: var(--text-dark);
}

.document-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.document-content {
    flex: 1;
}

.document-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    position: relative;
    transition: var(--transition);
}

.doc-card:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.doc-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(26, 79, 214, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.doc-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.doc-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.doc-check {
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.document-image {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12rem;
    color: rgba(26, 79, 214, 0.05);
}

/* Products Section */
.products {
    background-color: var(--bg-white);
}

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

.preview-grid .product-card {
    text-decoration: none;
}

.preview-grid .product-card::after {
    content: 'Detayları Gör  →';
}

.product-preview-section {
    padding-top: 4rem;
}

.section-cta {
    margin-top: 2rem;
    text-align: center;
}

.product-card {
    background: var(--bg-white);
    border: none;
    padding: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    gap: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
}

.product-card .prod-img {
    order: 1;
}

.product-card span {
    order: 2;
}

.product-card::after {
    order: 3;
}

.prod-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.product-card span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    display: block;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
}

.product-card::after {
    content: 'İncele  →';
    color: var(--accent-color);
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: block;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card:hover .prod-img img {
    transform: scale(1.1);
}

.product-card:hover::after {
    transform: translateX(5px);
}

.products-hero {
    background: transparent;
}

.offer-form-section {
    background: transparent;
}

.offer-form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 14px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-standalone {
    margin-top: 2rem;
}

.phone-verify-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    align-items: center;
}

.verify-btn {
    min-width: 140px;
    height: 49px;
    padding: 0 1.2rem;
}

.verification-panel {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(26, 79, 214, 0.05);
    border: 1px solid rgba(26, 79, 214, 0.12);
}

.verification-panel.show {
    display: block;
}

.helper-text {
    display: block;
    margin-top: 0.55rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.helper-text.error {
    color: #dc2626;
}

.helper-text.success {
    color: var(--accent-color);
}

.product-detail-list {
    display: grid;
    gap: 1.75rem;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: stretch;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-detail-media {
    min-height: 240px;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-copy {
    padding: 2rem 2rem 2rem 0;
}

.product-detail-copy h2 {
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    font-size: 1.8rem;
}

.product-detail-copy p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.product-detail-copy ul {
    display: grid;
    gap: 0.7rem;
}

.product-detail-copy li {
    color: var(--text-dark);
    background: rgba(26, 107, 50, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 0.9rem 1rem;
    border-radius: 6px;
    list-style: none;
}

/* Footer */
footer {
    background: rgba(3, 8, 26, 0.85);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,79,214,0.18) 0%, rgba(255,255,255,0.03) 100%);
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    display: block;
    border: none;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #87c7ff;
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ffffff 0%, #1a6b32 34%, #1a4fd6 68%, #0a0f2e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 12px 30px rgba(10, 15, 46, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: whatsappPulse 1.4s infinite, whatsappBlink 1.1s infinite alternate;
    border: 3px solid rgba(255, 255, 255, 0.95);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(145deg, #ffffff 0%, #145527 36%, #1a4fd6 70%, #0a0f2e 100%);
}

/* Floating Info Card (Left Side) */
.floating-info-card {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(155deg, rgba(10,15,46,0.98) 0%, rgba(26,79,214,0.95) 58%, rgba(26,107,50,0.94) 100%);
    color: #ffffff;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    border-left: 4px solid var(--accent-color);
    max-width: 360px;
    display: block;
    cursor: pointer;
}

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

.fic-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 0;
}

.contact-options {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-options.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.opt-btn {
    padding: 0.8rem;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.whatsapp-opt {
    background: linear-gradient(135deg, #1a6b32, #1e8c42);
}

.whatsapp-opt:hover {
    background: linear-gradient(135deg, #145527, #1a6b32);
    color: white;
}

.secondary-whatsapp {
    background: linear-gradient(135deg, #1a4fd6, #0a0f2e);
}

.secondary-whatsapp:hover {
    background: linear-gradient(135deg, #163fb8, #0a0f2e);
    color: #ffffff;
}

.call-opt {
    background: linear-gradient(135deg, #1a4fd6, #0a0f2e);
}

.call-opt:hover {
    background: linear-gradient(135deg, #163fb8, #0a0f2e);
    color: #ffffff;
}

.phone-opt {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.phone-opt:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    color: #ffffff;
}

.email-opt {
    background: linear-gradient(135deg, #ffffff, #d8e8ff);
    color: var(--primary-color);
}

.email-opt:hover {
    background: linear-gradient(135deg, #d8e8ff, #bdd6ff);
    color: var(--primary-color);
}

.form-opt {
    background: linear-gradient(135deg, #1a6b32, #145527);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.form-opt:hover {
    background: linear-gradient(135deg, #1e8c42, #1a6b32);
    color: #ffffff;
}

/* Blinking Animation */
@keyframes blinkText {
    0% { color: #1e8c42; text-shadow: 0 0 6px rgba(26, 107, 50, 0.35); opacity: 1; }
    50% { color: #ffffff; text-shadow: 0 0 14px rgba(255, 255, 255, 0.5); opacity: 0.7; }
    100% { color: #87c7ff; text-shadow: 0 0 10px rgba(26, 79, 214, 0.45); opacity: 1; }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 107, 50, 0.34), 0 10px 28px rgba(10, 15, 46, 0.28); }
    70% { box-shadow: 0 0 0 18px rgba(26, 107, 50, 0), 0 10px 28px rgba(10, 15, 46, 0.28); }
    100% { box-shadow: 0 0 0 0 rgba(26, 107, 50, 0), 0 10px 28px rgba(10, 15, 46, 0.28); }
}

@keyframes whatsappBlink {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.18); }
}

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

.blink-text {
    animation: blinkText 1.5s infinite alternate;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

/* =============================================
   INTRO SCREEN - Işıltılı Lacivert Arka Plan
   ============================================= */
#intro-screen {
    background:
        linear-gradient(135deg, rgba(23, 61, 145, 0.96) 0%, rgba(5, 15, 49, 0.98) 45%, rgba(3, 23, 27, 1) 100%),
        linear-gradient(24deg, rgba(110, 232, 155, 0.2), transparent 44%) !important;
}

/* Parlayan yıldız partikülleri */
#intro-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 28% 72%, rgba(180,210,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 44% 9%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(2px 2px at 61% 55%, rgba(200,220,255,0.85) 0%, transparent 100%),
        radial-gradient(1px 1px at 76% 31%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 14%, rgba(180,210,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 5% 48%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 38%, rgba(200,230,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 80%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 70% 68%, rgba(180,210,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 82%, rgba(255,255,255,0.85) 0%, transparent 100%),
        radial-gradient(2px 2px at 18% 91%, rgba(200,220,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 82% 46%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 48% 61%, rgba(180,230,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 28%, rgba(255,255,255,0.65) 0%, transparent 100%),
        radial-gradient(2px 2px at 24% 55%, rgba(200,220,255,0.75) 0%, transparent 100%),
        radial-gradient(1px 1px at 67% 88%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 22%, rgba(180,210,255,0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 8% 77%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 53% 44%, rgba(200,230,255,0.7) 0%, transparent 100%);
    animation: starTwinkle 3s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Işıltılı ışık huzmesi üst köşe */
#intro-screen::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 15%;
    width: 70%;
    height: 55%;
    background: linear-gradient(105deg, transparent 12%, rgba(176,210,255,0.16) 42%, rgba(110,232,155,0.08) 54%, transparent 76%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.75; transform: scale(1); }
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

/* Intro screen içeriği z-index düzeltmesi */
#intro-screen > * {
    position: relative;
    z-index: 1;
}

.intro-slogan {
    display: flex;
    gap: 0.28em;
    flex-wrap: wrap;
    justify-content: center;
    color: #d8ebff;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(100,160,255,0.6), 0 2px 8px rgba(0,0,0,0.4);
}

.intro-slogan span {
    opacity: 0;
    transform: translateY(14px);
    display: inline-block;
    animation: introWord 0.8s ease forwards;
}

.intro-slogan span:nth-child(1) { animation-delay: 1.1s; }
.intro-slogan span:nth-child(2) { animation-delay: 1.55s; }
.intro-slogan span:nth-child(3) { animation-delay: 2s; }

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

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg-white);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 25px 50px rgba(10, 15, 46, 0.22);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(203, 213, 225, 0.38);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(4, 12, 36, 0.78);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 231, 255, 0.62);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 79, 214, 0.12);
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .document-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .document-image {
        display: none;
    }
    .gallery-grid,
    .video-gallery-grid,
    .gallery-teaser-layout {
        grid-template-columns: 1fr;
    }
    .gallery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .phone-verify-row {
        grid-template-columns: 1fr;
    }
    .product-detail-copy {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 15, 46, 0.98);
        backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 2.5rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    .nav-contact-link {
        padding: 0.9rem 1.3rem;
        text-align: center;
    }
    .top-bar-container {
        gap: 0.75rem;
    }
    .top-bar-left span:first-child {
        display: none;
    }
    .top-bar-left span {
        margin-right: 0;
    }
    .brand-logo {
        height: 44px;
        width: 44px;
    }
    .brand-logo-home {
        height: 56px;
        width: 56px;
    }
    .logo {
        font-size: 1.5rem;
        gap: 8px;
    }
    .brand-text {
        font-size: 1.35rem;
    }
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 225px;
        padding-bottom: 4rem;
    }
    .hero-photo-strip {
        top: 105px;
        width: calc(100% - 24px);
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 8px;
        scroll-snap-type: x mandatory;
    }
    .hero-photo-strip img {
        width: 132px;
        min-width: 132px;
        height: 82px;
        scroll-snap-align: start;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .intro-slogan {
        font-size: 2.1rem;
        padding: 0 1rem;
        text-align: center;
    }
    .gallery-grid,
    .video-gallery-grid,
    .gallery-teaser-layout,
    .gallery-mosaic,
    .gallery-strip {
        grid-template-columns: 1fr;
    }
    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .gallery-heading h2 {
        text-align: left;
    }
    .gallery-photo,
    .gallery-photo-large,
    .gallery-photo-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .floating-info-card {
        display: block;
        left: 16px;
        right: 16px;
        bottom: 92px;
        max-width: none;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

/* Scrollbar Customization for Sliders */
.scroll-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px !important;
}
.scroll-slider::-webkit-scrollbar {
    height: 8px;
}
.scroll-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.scroll-slider::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}
.scroll-slider > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* WhatsApp Dropdown Styling */
.whatsapp-dropdown {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 9998;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.whatsapp-dropdown.show {
    display: flex;
}
.whatsapp-dropdown a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
    white-space: nowrap;
}
.whatsapp-dropdown a i {
    color: #25d366;
    font-size: 1.2rem;
}
.whatsapp-dropdown a:hover {
    background: rgba(255,255,255,0.05);
}

/* Form Input Styling */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(10, 15, 46, 0.4);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 232, 155, 0.2);
}

/* ---- 3-column video grid ---- */
.video-gallery-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---- Gallery Zoom Icon ---- */
.gallery-zoomable {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(26, 79, 214, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.gallery-zoomable:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

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

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

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

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .video-gallery-grid-3 {
        grid-template-columns: 1fr;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
