/* ==========================================
   Modern White & Classy Design - YMG Yapım
   ========================================== */
:root {
    --primary-red: #dc143c;
    --dark-red: #a00d2a;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-light: #e8e8e8;
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 8px 40px rgba(220, 20, 60, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================
   STARS ANIMATION - Only on page load
   ========================================== */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1s ease-out;
}

#stars-container.fade-out {
    opacity: 0;
}

.star {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* ==========================================
   NAVIGATION - White & Clean
   ========================================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-subtitle {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.navbar-dark .navbar-toggler {
    border-color: var(--primary-red);
}

.navbar-dark .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='%23dc143c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==========================================
   HERO SECTION - Clean White Background
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.03) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-outline-light {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================
   SECTIONS - Modern & Clean
   ========================================== */
section {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary-red);
}

.section-description {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--white);
    padding: 120px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-medium);
}

.about-image:hover {
    transform: translate(-10px, -10px);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
    box-shadow: var(--shadow-strong);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stat-number i {
    font-size: 2.2rem;
    color: var(--primary-red);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
    background: var(--off-white);
    padding: 120px 0;
}

.project-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.project-card.featured {
    border: 2px solid var(--primary-red);
}

.project-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: filter 0.4s ease;
}

.project-card:hover .project-image {
    filter: brightness(1.05);
}

.project-card.featured .project-image {
    height: 100%;
    min-height: 450px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

.badge-featured,
.badge-status {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 2.5rem;
}

.project-category {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 1.2rem 0;
    font-weight: 700;
}

.project-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    color: var(--text-gray);
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Single Project Poster Styles */
.project-card.single-project {
    border-radius: 15px;
    overflow: hidden;
}

.project-poster {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card.single-project:hover .project-poster img {
    transform: scale(1.05);
}

.project-card.single-project .project-content {
    padding: 3rem;
}

.project-card.single-project .project-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

.project-card.single-project .project-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-card.single-project .project-tags {
    margin-top: 2rem;
    gap: 1rem;
}

.project-card.single-project .tag {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================
   VISION & MISSION SECTION
   ========================================== */
.vision-section {
    background: var(--white);
    padding: 120px 0;
}

.vision-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 3.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.vision-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vision-icon i {
    font-size: 2.8rem;
    color: var(--white);
}

.vision-icon-alt {
    background: var(--text-dark);
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vision-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 2rem;
}

.vision-text {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--off-white);
    padding: 120px 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 3.5rem;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-control {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    color: var(--text-dark);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.05rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 0;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .section-title { font-size: 2.8rem; }
    .about-image-wrapper { margin-bottom: 3rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons .btn { padding: 0.8rem 2rem; font-size: 0.85rem; display: block; margin-bottom: 1rem; }
    .section-title { font-size: 2.2rem; }
    .project-card.featured .project-image { min-height: 300px; }
    .vision-card { padding: 2.5rem; margin-bottom: 2rem; }
    .contact-card { padding: 2.5rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .stat-number { font-size: 2.5rem; }
    .project-title { font-size: 1.6rem; }
}

/* ==========================================
   CUSTOM BUTTON STYLES
   ========================================== */
.btn-custom {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-custom.btn-primary {
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-custom.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

.btn-custom.btn-outline-light {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-custom.btn-outline-light:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .btn-custom {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
}

/* ==========================================
   HERO BACKGROUND IMAGE
   ========================================== */
.hero-section {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.92) 100%),
        url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ==========================================
   TEAM SECTION - Ekibimiz
   ========================================== */
.team-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.team-member {
    margin-bottom: 2rem;
    text-align: center;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

.team-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.team-image-wrapper:hover .team-image {
    filter: grayscale(0%);
}

.team-info {
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.team-image-wrapper:hover + .team-info,
.team-member:hover .team-info {
    box-shadow: var(--shadow-medium);
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 500;
    line-height: 1.6;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    position: relative;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   CONTACT DETAIL PAGE
   ========================================== */
.contact-detail-section {
    background: var(--white);
    padding: 80px 0;
}

.working-hours {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.working-hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.working-hour-item:last-child {
    border-bottom: none;
}

.working-hour-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.working-hour-item .time {
    color: var(--primary-red);
    font-weight: 500;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(10px);
}

.social-link-large i {
    font-size: 1.5rem;
    width: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

/* ==========================================
   ABOUT DETAIL PAGE
   ========================================== */
.about-detail-section {
    background: var(--white);
    padding: 80px 0;
}

.stat-box {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    color: var(--white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-label {
    color: var(--white);
}

.value-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   TEAM DETAIL PAGE
   ========================================== */
.team-detail-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.team-description-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.team-description-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ==========================================
   VISION DETAIL PAGE
   ========================================== */
.vision-detail-section {
    background: var(--white);
    padding: 80px 0;
}

.vision-card-detail {
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.vision-card-alt {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.vision-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vision-icon-alt-large {
    background: var(--white);
}

.vision-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.vision-icon-alt-large i {
    color: var(--primary-red);
}

.vision-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vision-card-alt .vision-title-large {
    color: var(--white);
}

.vision-divider-large {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin-bottom: 2rem;
}

.vision-card-alt .vision-divider-large {
    background: var(--white);
}

.vision-text-large {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.vision-card-alt .vision-text-large {
    color: rgba(255, 255, 255, 0.95);
}

.vision-features-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-large {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-card-alt .feature-icon {
    background: var(--white);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.vision-card-alt .feature-icon i {
    color: var(--primary-red);
}

.feature-content h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.vision-card-alt .feature-content h5 {
    color: var(--white);
}

.feature-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.vision-card-alt .feature-content p {
    color: rgba(255, 255, 255, 0.85);
}

.goal-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.goal-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
}

.goal-card:hover .goal-number {
    color: rgba(220, 20, 60, 0.1);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(360deg);
}

.goal-icon i {
    font-size: 2rem;
    color: var(--white);
}

.goal-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.goal-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   MOVIE DETAIL PAGE
   ========================================== */
.movie-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.movie-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920');
    background-size: cover;
    background-position: center;
}

.movie-poster-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.movie-poster-large img {
    width: 100%;
    height: auto;
}

.movie-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 5px;
}

.movie-header-content {
    color: var(--white);
}

.movie-category {
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.movie-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.movie-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.meta-item i {
    color: var(--primary-red);
}

.movie-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    border-left: 4px solid var(--primary-red);
    padding-left: 2rem;
    margin: 0;
}

.movie-detail-section {
    background: var(--off-white);
}

.detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-red);
}

.detail-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.production-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 1rem;
}

.info-value {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.status-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.themes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.theme-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.theme-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-item i {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quick-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.2rem;
}

.quick-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}

.cta-card .sidebar-title {
    color: var(--white);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

.cta-card .btn-primary:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25d366;
}

.related-cta {
    background: var(--light-gray);
}

/* ==========================================
   GALLERY PAGE
   ========================================== */
.gallery-section {
    background: var(--off-white);
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--light-gray);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.gallery-grid {
    margin-top: 3rem;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: var(--white);
    width: 100%;
}

.gallery-overlay-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 2rem;
}

.lightbox-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .team-image {
        height: 300px;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .project-poster {
        min-height: 400px;
    }

    .project-card.single-project .project-content {
        padding: 2rem;
    }

    .project-card.single-project .project-title {
        font-size: 2rem;
    }

    .project-card.single-project .project-description {
        font-size: 1rem;
    }

    .movie-title {
        font-size: 2.5rem;
    }

    .movie-tagline {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .movie-meta {
        gap: 1rem;
    }

    .meta-item {
        font-size: 1rem;
    }

    .detail-card {
        padding: 2rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-text {
        font-size: 1rem;
    }

    .vision-title-large {
        font-size: 2rem;
    }

    .vision-text-large {
        font-size: 1rem;
    }

    .goal-card {
        padding: 2rem 1.5rem;
    }

    .brand-logo {
        height: 50px;
    }

    .navbar.scrolled .brand-logo {
        height: 45px;
    }
}
