/* ======================================
   Form Notification Messages
   ====================================== */
.form-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: slideIn 0.5s ease;
}

.form-notification.success {
    border-left: 5px solid #4CAF50;
}

.form-notification.error {
    border-left: 5px solid #f44336;
}

.form-notification p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

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

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

/* ======================================
   Genc Holding Section - Joven Override in joven.css
   ====================================== */
.genc-holding-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    background-image: url('../img/genc_holding_slider.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.genc-holding-bg {
    display: none;
}

.genc-holding-bg img {
    display: none;
}

.genc-holding-content {
    position: relative;
    width: 50%;
    padding: 80px 100px 80px 80px;
    background: transparent;
    z-index: 2;
}

.genc-holding-content h2 {
    font-size: 22pt;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-weight: 200;
}

.genc-holding-content p {
    font-size: 18pt;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Gotham Book', sans-serif;
}

.genc-logo {
    margin-top: 50px;
}

.genc-logo img {
    width: 90px;
    height: auto;
}

/* ======================================
   Joven 41 Section
   ====================================== */
.joven41-section {
    position: relative;
    width: 100%;
    background: #171717;
    padding: 120px 15% 150px;
    text-align: center;
    min-height: 600px;
    overflow: hidden;
}

.joven41-watermark {
    position: absolute;
    top: 0;
    left: 0;
    right: 50px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.joven41-watermark img {
    max-width: 350px;
    max-height: 60%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.joven41-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.joven41-content h2 {
    font-size: 28pt;
    color: #906d4f;
    margin-bottom: 60px;
    letter-spacing: 8px;
    font-family: 'Futura PT Book', sans-serif;
    font-weight: 200;
}

.joven41-content p {
    font-size: 16pt;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 35px;
}

.ince-serit {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
    z-index: 5;
}

.ince-serit img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================
   Two Column Plan Type Section
   ====================================== */
.plan-type-section {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0;
    overflow: hidden;
}

.plan-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: visible;
}

.plan-type-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.plan-type-item:hover {
    /* Animation removed - transform: scale(1.02); */
}

.plan-type-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.plan-type-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Default: BLACK background for inactive plan types */
.plan-type-item .plan-type-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #000000;
    background-image: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Active plan type - band.png background (GOLD/YELLOW) - Higher specificity */
.plan-type-item.active-plan-type .plan-type-band {
    background-image: url('../img/band.png') !important;
    background-color: transparent !important;
}

.plan-type-band h3 {
    font-size: 24pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 200;
}

/* ======================================
   Plans Section
   ====================================== */
.plans-section {
    position: relative;
    width: 100%;
    background: #3a3a3a;
    padding: 80px 5% 100px;
}

.plan-ince-serit {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
    margin-top: -20px;
}

.plan-ince-serit.plan-ince-serit-bottom {
    margin-top: 60px;
    margin-bottom: 0;
}

.plan-ince-serit img {
    width: 100%;
    height: auto;
    display: block;
}

/* Plan Type Tabs (Ofis/Rezidans) */
.plan-type-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.plan-type-tab {
    background: transparent;
    border: 2px solid transparent;
    color: #999;
    padding: 12px 40px;
    font-size: 18pt;
    font-family: 'Futura PT Book', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.plan-type-tab.active {
    border: 2px solid #b39064;
    color: #fff;
}

.plan-type-tab:hover {
    color: #b39064;
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.plan-tab {
    background: transparent;
    border: 2px solid transparent;
    color: #b39064;
    padding: 12px 35px;
    font-size: 18pt;
    font-family: 'Futura PT Book', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    min-width: 120px;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.plan-tab:hover {
    background: rgba(179, 144, 100, 0.15);
    color: #b39064;
    transform: translateY(-2px);
}

.plan-tab.active {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

/* Plan Content */
.plan-content-wrapper {
    display: grid;
    grid-template-columns: 550px 550px;
    gap: 80px;
    align-items: start;
    justify-content: center;
}

.plan-image-container {
    width: 100%;
    max-width: 550px;
    background: transparent;
    padding: 0;
}

.plan-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Plan Details */
.plan-details {
    color: #fff;
    max-width: 550px;
}

.plan-area-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.plan-check-icon {
    width: 8px;
    height: auto;
    flex-shrink: 0;
    margin-top: 5px;
}

.plan-area-content {
    flex: 1;
}

.area-label {
    font-size: 1.1rem;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 5px;
}

.area-value {
    font-size: 2.4rem;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    line-height: 1;
}

/* Rooms List */
.plan-rooms-list {
    margin-top: 40px;
    max-width: 350px;
}

.room-item {
    display: flex;
    gap: 3px;
    align-items: center;
    padding: 10px 0;
    border-bottom: none;
    transition: all 0.2s ease;
}

.room-item:hover {
    padding-left: 5px;
}

.room-number {
    font-size: 13pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    width: 20px;
}

.room-name {
    font-size: 12pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    white-space: nowrap;
    margin-right: 10px;
}

.room-area {
    font-size: 12pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #999;
    text-align: right;
    white-space: nowrap;
    margin-left: auto;
}

/* ======================================
   Gallery Section
   ====================================== */
.gallery-section {
    position: relative;
    width: 100%;
    background: #1a1a1a;
    padding: 80px 10% 100px;
    overflow: visible;
}

.gallery-section h2 {
    font-size: 26pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 200;
}

/* Main Category Tabs */
.gallery-main-tabs {
    display: none;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.gallery-main-tab {
    background: transparent;
    border: 2px solid transparent;
    color: #999;
    padding: 15px 40px;
    font-size: 18pt;
    font-family: 'Futura PT Book', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.gallery-main-tab.active {
    border: 2px solid #b39064;
    color: #fff;
}

.gallery-main-tab:hover {
    color: #fff;
}

/* Ince Serit - NO ANIMATION */
.gallery-ince-serit {
    max-width: var(--container-max-width);
    margin: 30px auto 30px;
    padding: 0 var(--container-padding);
    background: #ffffff !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
}

.gallery-ince-serit * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
}

.gallery-ince-serit img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-ince-serit .line-ince {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
}

/* Sub Category Tabs */
.gallery-sub-tabs {
    display: none;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-sub-tab {
    background: transparent;
    border: none;
    color: #999;
    padding: 10px 20px;
    font-size: 14pt;
    font-family: 'Futura PT Book', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
}

.gallery-sub-tab.active {
    color: #b39064;
}

.gallery-sub-tab:hover {
    color: #b39064;
}

/* Gallery Slider */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 60px auto 40px;
}

.gallery-slider {
    width: 85%;
    max-width: none;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    cursor: grab;
    user-select: none;
}

.gallery-slider:active {
    cursor: grabbing;
}

.gallery-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: url('../img/ince-serit.png') repeat-x;
    background-size: contain;
}

.gallery-slide {
    display: none;
    width: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
    color: rgb(179, 144, 100);
}

.gallery-prev {
    left: 2%;
}

.gallery-next {
    right: 2%;
}

.gallery-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.gallery-arrow svg {
    width: 55px;
    height: 55px;
    display: block;
}

/* Arrow directions */
.arrow-left {
    transform: scaleX(-1);
}

.arrow-right {
    /* Normal direction */
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #cccccc;
}

.gallery-dot.active {
    background: #b39064;
    border-color: #b39064;
}

.gallery-dot:hover {
    background: #b39064;
    border-color: #b39064;
}

/* ======================================
   Video Section
   ====================================== */
.video-section {
    position: relative;
    width: 100%;
    background: #2f2f2f;
    padding: 100px 10%;
    text-align: center;
    display: none;
}

.video-section h2 {
    font-size: 26pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: 200;
}

.video-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    cursor: pointer;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-play-button img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));
}

/* ======================================
   Team Section
   ====================================== */
.team-section {
    position: relative;
    width: 100%;
    background: #171717;
    padding: 100px 10%;
    text-align: center;
}

.team-section h2 {
    font-size: 26pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: 200;
}

/* Team Leader - Top Center */
.team-leader {
    text-align: center;
    margin-bottom: 50px;
}

.team-leader h3 {
    font-size: 19pt;
    font-family: 'Futura PT Book', sans-serif;
    background: linear-gradient(90deg, #d4b896 0%, #c5a07e 25%, #b39064 50%, #9d7a56 75%, #8b6f47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 200;
}

.team-leader .team-title {
    font-size: 17pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Divider Line */
.team-divider {
    width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

.team-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Grid - 3 columns */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member h3 {
    font-size: 19pt;
    font-family: 'Futura PT Book', sans-serif;
    background: linear-gradient(90deg, #d4b896 0%, #c5a07e 25%, #b39064 50%, #9d7a56 75%, #8b6f47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    display: inline-block;
    font-weight: 200;
}

.team-member .team-title {
    font-size: 15pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.team-email {
    display: inline-block;
    transition: all 0.3s ease;
}

.team-email:hover {
    transform: scale(1.1);
}

.team-email img {
    width: 24px;
    height: auto;
    display: block;
}

/* ======================================
   Contact Section
   ====================================== */
.contact-section {
    position: relative;
    width: 100%;
    background: #000;
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.2) brightness(0.85);
    -webkit-filter: grayscale(100%) contrast(1.2) brightness(0.85);
}

.map-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.map-logo-overlay img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.2);
}

/* ======================================
   Footer Section
   ====================================== */
.footer-section {
    position: relative;
    width: 100%;
    background: #3a3a3a;
    padding: 80px 10% 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column */
.footer-left {
    color: #fff;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 90px;
    height: auto;
}

.footer-intro {
    font-size: 13pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-phone,
.footer-email {
    font-size: 16pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #b39064;
}

.footer-hours {
    margin-bottom: 40px;
}

.footer-hours h4 {
    font-size: 14pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 12pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

/* Right Column - Form */
.footer-right h3 {
    font-size: 18pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 200;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #555;
    border: none;
    color: #fff;
    font-size: 11pt;
    font-family: 'Futura PT Book', sans-serif;
    transition: background 0.3s ease;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #aaa;
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    background: #666;
}

.footer-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    background: linear-gradient(90deg, #d4b896 0%, #b39064 33%, #b39064 66%, #8b6f47 100%);
    border: none;
    color: #ffffff;
    padding: 12px 40px;
    font-size: 13pt;
    font-family: 'Futura PT Book', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    align-self: flex-start;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: linear-gradient(90deg, #e0c4a8 0%, #c09b75 33%, #c09b75 66%, #9a7d58 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 127, 162, 0.4);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-checkboxes .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 11.5pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    line-height: 1.8;
    cursor: pointer;
}

.form-checkboxes .checkbox-label span {
    color: #fff;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #b39064;
}

.form-checkboxes .checkbox-label:hover {
    color: #fff;
}

.form-checkboxes .checkbox-label a {
    color: #b39064;
    text-decoration: underline;
}

.footer-right .footer-address {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    line-height: 1.7;
    text-align: left;
}

/* Copyright Bar */
.copyright-bar {
    width: 100%;
    background: #1a1a1a;
    padding: 30px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.copyright-bar p {
    font-size: 11pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    margin: 0;
}

.copyright-bar p:first-child {
    font-size: 14pt;
}

/* ======================================
   Laptop Optimizations (993px - 1440px)
   ====================================== */
@media (min-width: 993px) and (max-width: 1440px) {
    /* Genc Holding Section */
    .genc-holding-section {
        min-height: 500px;
    }

    .genc-holding-content {
        padding: 60px 80px 60px 60px;
    }

    .genc-holding-content h2 {
        font-size: 18pt;
        margin-bottom: 30px;
    }

    .genc-holding-content p {
        font-size: 15pt;
        margin-bottom: 20px;
    }

    .genc-logo img {
        width: 100px;
    }

    /* Joven41 Section */
    .joven41-section {
        padding: 90px 12% 110px;
        min-height: 500px;
    }

    .joven41-watermark img {
        max-width: 300px;
    }

    .joven41-content h2 {
        font-size: 24pt;
        margin-bottom: 45px;
        letter-spacing: 6px;
    }

    .joven41-content p {
        font-size: 14pt;
        margin-bottom: 28px;
    }

    /* Plan Type Section */
    .plan-type-band {
        height: 70px;
    }

    .plan-type-band h3 {
        font-size: 20pt;
        letter-spacing: 2px;
    }

    /* Plans Section */
    .plans-section {
        padding: 70px 5% 85px;
    }

    .plan-type-tabs {
        gap: 20px;
        margin-bottom: 35px;
    }

    .plan-type-tab {
        padding: 10px 32px;
        font-size: 15pt;
        letter-spacing: 1.5px;
    }

    .plan-tabs {
        gap: 20px;
        margin-bottom: 50px;
    }

    .plan-tab {
        padding: 10px 28px;
        font-size: 15pt;
        letter-spacing: 1.5px;
    }

    .plan-content-wrapper {
        grid-template-columns: 480px 450px;
        gap: 60px;
    }

    .plan-image-container {
        max-width: 480px;
    }

    .area-label {
        font-size: 10pt;
    }

    .area-value {
        font-size: 22pt;
    }

    .room-number {
        font-size: 12pt;
    }

    .room-name {
        font-size: 11pt;
    }

    .room-area {
        font-size: 11pt;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 70px 8% 85px;
    }

    .gallery-main-tab {
        padding: 12px 32px;
        font-size: 16pt;
    }

    .gallery-sub-tab {
        font-size: 13pt;
    }

    .gallery-slider {
        width: 85%;
    }

    .gallery-arrow img {
        width: 45px;
    }

    /* Video Section */
    .video-section {
        padding: 80px 8%;
    }

    .video-section h2 {
        font-size: 22pt;
        margin-bottom: 50px;
    }

    .video-container {
        max-width: 1000px;
    }

    .video-play-button {
        width: 70px !important;
        height: 70px !important;
        position: absolute !important;
        top: 45% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .video-play-button img {
        width: 70px !important;
        height: 70px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* Team Section */
    .team-section {
        padding: 80px 8%;
    }

    .team-section h2 {
        font-size: 22pt;
        margin-bottom: 50px;
    }

    .team-leader h3 {
        font-size: 14pt;
    }

    .team-leader .team-title {
        font-size: 13pt;
    }

    .team-grid {
        gap: 40px 50px;
        max-width: 900px;
    }

    .team-member h3 {
        font-size: 13pt;
    }

    .team-member .team-title {
        font-size: 13pt;
    }

    .team-email img {
        width: 22px;
    }

    /* Contact Section */
    .map-container {
        height: 500px;
    }

    .map-logo-overlay {
        width: 85px;
    }

    /* Footer Section */
    .footer-section {
        padding: 70px 8% 50px;
    }

    .footer-container {
        gap: 60px;
    }

    .footer-logo img {
        width: 80px;
    }

    .footer-intro {
        font-size: 12pt;
    }

    .footer-phone,
    .footer-email {
        font-size: 14pt;
    }

    .footer-hours h4 {
        font-size: 13pt;
    }

    .hours-item {
        font-size: 11pt;
    }

    .social-icon img {
        width: 28px;
        height: 28px;
    }

    .footer-right h3 {
        font-size: 16pt;
    }

    .footer-form input,
    .footer-form textarea {
        padding: 13px 18px;
        font-size: 10pt;
    }

    .form-submit-btn {
        padding: 11px 35px;
        font-size: 12pt;
    }

    .form-checkboxes .checkbox-label {
        font-size: 10.5pt;
    }

    .footer-right .footer-address {
        font-size: 12pt;
    }

    .copyright-bar {
        padding: 25px 8%;
    }

    .copyright-bar p {
        font-size: 10pt;
    }

    .copyright-bar p:first-child {
        font-size: 13pt;
    }
}

/* ======================================
   Responsive - Sections
   ====================================== */
@media (max-width: 992px) {
    .genc-holding-section {
        min-height: 600px;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .genc-holding-bg {
        display: none;
    }

    .genc-holding-section.joven-genc-section {
        min-height: 680px !important;
        display: flex !important;
    }

    .genc-holding-section.joven-genc-section .genc-holding-bg {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .genc-holding-section.joven-genc-section .genc-holding-bg img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .genc-holding-content {
        width: 100%;
        margin-left: 0;
        padding: 60px 40px;
        position: relative;
        z-index: 2;
    }

    .joven41-section {
        padding: 80px 40px 60px;
    }

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

    .plan-image {
        height: 500px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .plan-type-grid {
        grid-template-columns: 1fr;
    }

    .plan-type-band h3 {
        font-size: 24pt;
    }

    /* Plan Content - Mobile Fix */
    .plan-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .plan-image-container {
        max-width: 100%;
    }

    .plan-details {
        max-width: 100%;
    }

    .plan-rooms-list {
        max-width: 100%;
        overflow-x: auto;
    }

    .room-item {
        min-width: 300px;
    }

    /* Plans Section Padding */
    .plans-section {
        padding: 60px 20px 80px;
        overflow-x: hidden;
    }

    .plan-tabs {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
    }

    .plan-tab {
        font-size: 14pt;
        padding: 10px 20px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    /* Body & Overflow Fix */
    body {
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    * {
        max-width: 100vw;
    }

    /* Header */
    .header-wrapper {
        padding: 15px 20px !important;
    }

    .logo img {
        height: 60px !important;
    }

    .genc-holding-content h2 {
        font-size: 18pt;
    }

    .genc-holding-content p {
        font-size: 13pt;
    }

    .genc-holding-content {
        padding: 40px 20px;
    }

    .joven41-section {
        padding: 60px 20px 40px;
    }

    .joven41-content h2 {
        font-size: 22pt;
        letter-spacing: 4px;
    }

    .joven41-content p {
        font-size: 13pt;
    }

    /* Plan Type Section - OFİS/REZİDANS Cards */
    .plan-type-section {
        overflow-x: hidden;
        overflow-y: visible !important;
    }

    .plan-type-item {
        min-height: 300px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .plan-type-item:hover {
        transform: none !important;
    }

    .plan-type-band {
        height: 60px;
    }

    .plan-type-band h3 {
        font-size: 16pt;
        letter-spacing: 2px;
    }

    /* Plans Section */
    .plans-section {
        padding: 40px 15px 60px;
        overflow-x: hidden !important;
    }

    .plan-tabs {
        gap: 6px;
        padding: 0 10px;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .plan-tab {
        font-size: 9pt !important;
        padding: 8px 12px !important;
        min-width: 60px;
        letter-spacing: 0.5px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .plan-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 10px;
    }

    .plan-image-container,
    .plan-details {
        max-width: 100%;
        width: 100%;
    }

    .plan-area-item {
        margin-bottom: 20px;
    }

    .area-label {
        font-size: 0.9rem;
    }

    .area-value {
        font-size: 2rem;
    }

    .plan-rooms-list {
        max-width: 100%;
        overflow-x: hidden;
    }

    .room-item {
        gap: 5px;
        min-width: 100%;
    }

    .room-number {
        font-size: 11pt;
        min-width: 18px;
        width: 18px;
    }

    .room-name {
        font-size: 10pt;
        margin-right: 5px;
    }

    .room-area {
        font-size: 10pt;
    }

    /* Gallery */
    .gallery-section {
        padding: 60px 15px 80px;
    }

    .gallery-section h2 {
        font-size: 20pt;
    }

    .gallery-slider {
        width: 100%;
    }

    .gallery-arrow {
        opacity: 0.8;
    }

    .gallery-arrow svg {
        width: 35px;
        height: 35px;
    }

    .gallery-dots {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 25px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    /* Video Section */
    .video-section {
        padding: 60px 20px;
    }

    .video-section h2 {
        font-size: 20pt;
        margin-bottom: 40px;
    }

    .video-play-button {
        width: 60px !important;
        height: 60px !important;
    }

    .video-play-button img {
        width: 60px !important;
        height: 60px !important;
    }

    /* Team */
    .team-section {
        padding: 60px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-section h2 {
        font-size: 20pt;
    }

    .team-leader h3,
    .team-member h3 {
        font-size: 16pt;
    }

    .team-leader .team-title,
    .team-member .team-title {
        font-size: 13pt;
    }

    /* Map */
    .map-container {
        height: 300px;
    }

    .map-logo-overlay {
        width: 60px;
    }

    /* Footer */
    .footer-section {
        padding: 60px 20px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .copyright-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    /* Footer Info Section - Remove Bottom Padding */
    .footer-info-section {
        padding: 60px 0 20px !important;
    }

    .footer-info-container {
        padding: 0 20px !important;
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-info-left {
        padding: 0 !important;
    }

    .footer-info-right {
        padding: 20px 0 !important;
        background: transparent !important;
    }

    /* Footer Copyright - Mobile */
    .footer-copyright {
        margin: 0 auto;
        padding: 20px 20px 0;
    }

    .footer-copyright .footer-title-gradient {
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .footer-copyright p {
        font-size: 0.7rem;
    }

    /* Hide Map Logo */
    .map-logo-overlay {
        display: none !important;
    }
}
.footer-info-left-OLD-REMOVED {
    color: #000000;
    padding-left: 0;
}

.footer-info-logo img {
    max-width: 90px;
    margin-bottom: 20px;
    margin-left: 0;
}

.footer-title-gradient {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Gotham Book', sans-serif;
    background: linear-gradient(90deg, #d4b896 0%, #c5a07e 25%, #b39064 50%, #9d7a56 75%, #8b6f47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-info-intro {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a4a4a;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-contact {
    margin-bottom: 30px;
}

.footer-info-phone {
    display: block;
    color: #4a4a4a;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Gotham Medium', sans-serif;
}

.footer-info-email {
    display: block;
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-phone:hover,
.footer-info-email:hover {
    color: #b39064;
}

.footer-info-hours {
    margin-bottom: 35px;
}

.footer-info-hours h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-family: 'Gotham Book', sans-serif;
}

.hours-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 3px 0;
    font-size: 0.88rem;
    color: #4a4a4a;
    font-family: 'Gotham Book', sans-serif;
    border-bottom: none;
}

.hours-row span:first-child {
    min-width: 100px;
}

.footer-info-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.footer-info-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-info-social a:hover {
    opacity: 0.7;
}

.footer-info-social img {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
}

/* Footer Right - Form - REMOVED OLD DUPLICATE */

/* Bilgi Formu Header with Lines */
.bilgi-formu-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

/* Static line - NO ANIMATION, completely separate from other lines */
.bilgi-formu-line-static {
    flex: 1;
    height: 5px;
    background-image: url('../img/ince.png');
    background-repeat: repeat-x;
    background-size: auto 5px;
    background-position: center;
    min-width: 50px;
    width: 100%;
}

.bilgi-formu-header h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin: 0;
    color: #000000;
    font-family: 'Gotham Book', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-info-right h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff !important;
    font-family: 'Gotham Book', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    padding-left: 0;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.footer-info-form input,
.footer-info-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: none;
    background: #d9d9d9;
    color: #000000;
    border-radius: 0;
    font-size: 0.9rem;
    transition: none;
}

.footer-info-form input:focus,
.footer-info-form textarea:focus {
    background: #d9d9d9;
    outline: none;
}

.footer-info-form input::placeholder,
.footer-info-form textarea::placeholder {
    color: #666666;
    font-family: 'Gotham Book', sans-serif;
}

/* REMOVED - Duplicate gray button - Using gold button below instead */

.footer-info-checkboxes {
    margin: 15px 0;
}

.footer-info-checkboxes label {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #4a4a4a;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-checkboxes input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #000000;
}

.footer-info-address {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-address p {
    margin-bottom: 3px;
    font-weight: 400;
}

/* Copyright at bottom of footer */
.footer-copyright {
    max-width: var(--container-max-width);
    margin: 30px auto 0;
    padding: 25px var(--container-padding) 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-copyright .footer-title-gradient {
    margin-bottom: 20px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #4a4a4a;
    margin: 0;
    font-family: 'Gotham Book', sans-serif;
}

/* Copyright Bar - Hidden */
.copyright-bar {
    display: none;
}

/* Info Form Sticky - Already Updated Above */
.submit-btn {
    background: var(--joven-gradient);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 90, 163, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --container-padding: 60px;
    }

    .mimari-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 60px;
    }

    .mimari-left {
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-item-joven {
        grid-template-columns: 1fr;
    }

    .video-grid-joven {
        grid-template-columns: 1fr;
        padding: 0 60px;
    }

    .footer-info-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 60px;
    }

    .planlar-thumbnails {
        grid-template-columns: 1fr;
    }

    .planlar-section::after {
        display: none;
    }

    .plan-details-wrapper::before {
        display: none;
    }

    .plan-details-wrapper {
        padding: 30px 20px;
    }
}
/* ======================================
   FOOTER - Joven Structure with 41 Colors
   ====================================== */
.footer-info-wrapper {
    background: #000000;
    width: 100%;
}

.footer-info-section {
    background: #000000;
    padding: 60px 0 40px;
}

.footer-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

@media (min-width: 769px) {
    .footer-info-container {
        grid-template-columns: 400px 1fr;
        gap: 100px;
    }
}

.footer-info-left {
    color: #ffffff;
    padding-left: 0;
    width: 100%;
}

.footer-info-logo img {
    max-width: 90px;
    margin-bottom: 20px;
    margin-left: 0;
}

.footer-title-gradient {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Gotham Book', sans-serif;
    background: linear-gradient(90deg, #d4b896 0%, #c5a07e 25%, #b39064 50%, #9d7a56 75%, #8b6f47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-info-intro {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cccccc;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-contact {
    margin-bottom: 30px;
}

.footer-info-phone {
    display: block;
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Gotham Medium', sans-serif;
}

.footer-info-email {
    display: block;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-phone:hover,
.footer-info-email:hover {
    color: #b39064;
}

.footer-info-hours {
    margin-bottom: 35px;
}

.footer-info-hours h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Gotham Book', sans-serif;
}

.hours-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 3px 0;
    font-size: 0.88rem;
    color: #cccccc;
    font-family: 'Gotham Book', sans-serif;
}

.hours-row span:first-child {
    min-width: 100px;
}

.footer-info-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.footer-info-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-info-social a:hover {
    opacity: 0.7;
}

.footer-info-social img {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
}

/* Footer Right - Form */
.footer-info-right {
    background: #000000;
    padding: 40px;
    border-radius: 0;
    border: none;
    width: 100%;
}

.footer-info-right h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff !important;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-form input,
.footer-info-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: none;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-form input:focus,
.footer-info-form textarea:focus {
    background: #1a1a1a;
    outline: none;
}

.footer-info-form input::placeholder,
.footer-info-form textarea::placeholder {
    color: #ffffff;
    font-family: 'Gotham Book', sans-serif;
    opacity: 0.7;
}

.footer-form-btn {
    width: auto !important;
    padding: 12px 40px !important;
    background: #b39064 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0;
    font-size: 1rem !important;
    font-weight: 500;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Gotham Medium', sans-serif !important;
    margin-top: 10px;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
}

.footer-form-btn:hover {
    background: #8b6f47;
    color: #ffffff;
}

.footer-info-checkboxes {
    margin: 15px 0;
}

.footer-info-checkboxes label {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #cccccc;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-checkboxes input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #b39064;
}

.footer-info-address {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cccccc;
    font-family: 'Gotham Book', sans-serif;
}

.footer-info-address p {
    margin-bottom: 3px;
    font-weight: 400;
}

/* Copyright at bottom of footer */
.footer-copyright {
    max-width: 1400px;
    margin: 0 auto 0;
    padding: 25px 40px 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer-copyright .footer-title-gradient {
    margin-bottom: 20px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #888888;
    margin: 0;
    font-family: 'Gotham Book', sans-serif;
}

/* ======================================
   Lightbox for Gallery Images
   ====================================== */
.gallery-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-clickable:hover {
    transform: scale(1.02);
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #b39064;
    transform: scale(1.1);
}
