/* Dinamik Renk Değişkenleri */
:root {
    --ana-renk: #f8b400;
    --ikincil-renk: #e6a200;
    --hover-renk: #d49200;
    --border-renk: #f8b400;
    --text-renk: #f8b400;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


 /* Navbar Stilleri */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 5%;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .logo {
     font-size: 24px;
     font-weight: 700;
     color: #333;
     text-decoration: none;
     text-align: center;
 }

 .logo span {
     color: var(--ana-renk);
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 30px;
 }

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
     text-align: center;
 }

 .nav-links a:hover {
     color: var(--ana-renk);
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--ana-renk);
     bottom: -5px;
     left: 0;
     right: 0;
     margin: 0 auto;
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: #333;
 }

 /* Responsive Tasarım */
 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 80px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 80px);
         background: #fff;
         flex-direction: column;
         align-items: center;
         padding-top: 40px;
         transition: left 0.3s;
         text-align: center;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links li {
         margin: 15px 0;
         width: 100%;
         text-align: center;
     }

     .mobile-menu-btn {
         display: block;
     }

     .nav-links a::after {
         left: 50%;
         transform: translateX(-50%);
     }
 }

 /* Footer Stilleri */
 footer {
     background-color: #2a2d34;
     color: #ecf0f1;
     padding: 60px 0 30px;
     text-align: center;
 }

 .footer-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-around;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .footer-section {
     flex: 1;
     min-width: 250px;
     margin-bottom: 30px;
     padding: 0 15px;
 }

 .footer-section h3 {
     font-size: 20px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-section h3::after {
     content: '';
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     bottom: 0;
     width: 50px;
     height: 2px;
     background: var(--ana-renk);
 }

 .footer-section p {
     margin-bottom: 15px;
     line-height: 1.6;
     text-align: center;
 }

 .footer-links {
     list-style: none;
     text-align: center;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #bdc3c7;
     text-decoration: none;
     transition: color 0.3s;
     display: inline-block;
 }

 .footer-links a:hover {
     color: var(--ana-renk);
     padding-left: 5px;
 }

 .contact-info {
     list-style: none;
     text-align: center;
 }

 .contact-info li {
     margin-bottom: 15px;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .contact-info i {
     margin-right: 0;
     margin-bottom: 5px;
     color: var(--ana-renk);
     font-size: 20px;
 }

 .social-links {
     display: flex;
     margin-top: 20px;
     justify-content: center;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     margin: 0 5px;
     color: #ecf0f1;
     text-decoration: none;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--ana-renk);
     transform: translateY(-3px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 30px;
 }

 /* Form Stilleri */
 .newsletter-form {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .newsletter-form input {
     width: 100%;
     max-width: 300px;
     padding: 10px;
     margin-bottom: 10px;
     border: none;
     border-radius: 4px;
     text-align: center;
 }

 .newsletter-form button {
     background: var(--ana-renk);
     color: white;
     border: none;
     padding: 10px 20px;
     border-radius: 4px;
     cursor: pointer;
     transition: background 0.3s;
     width: 100%;
     max-width: 300px;
 }

 .newsletter-form button:hover {
     background: var(--hover-renk);
 }

 /* Responsive Tasarım */
 @media (max-width: 768px) {
     .footer-section {
         flex: 100%;
     }
 }


/* sldier */
/* Slider Container */
.property-slider {
    max-width: 100%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Slider Description Stilleri */
.slider-description {
    margin-bottom: 20px;
}

.slider-description p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-link {
    margin-top: 20px;
}

.slider-link .btn {
    background: var(--ana-renk, #f8b400);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 180, 0, 0.3);
}

.slider-link .btn:hover {
    background: var(--hover-renk, #d49200);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 180, 0, 0.4);
}

.slider-link .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.slider-link .btn:hover i {
    transform: translateX(3px);
}

 /* Slider Track */
 .slider-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     height: 600px;
 }

 /* Slider Item */
 .slider-item {
     min-width: 100%;
     position: relative;
     overflow: hidden;
 }

 .slider-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
 }

 /* Property Info Overlay */
 .property-info {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: white;
     padding: 30px;
     padding-top: 60px;
 }

 .property-info h3 {
     font-size: 28px;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .property-info .location {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     font-size: 16px;
 }

 .property-info .location i {
     margin-right: 8px;
     color: var(--ana-renk);
 }

 .property-details {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     margin-bottom: 20px;
 }

 .detail-item {
     display: flex;
     align-items: center;
 }

 .detail-item i {
     margin-right: 8px;
     color: #a3a3a3;
 }

 .price {
     font-size: 24px;
     font-weight: 900;
     color: white;
 }

 /* Slider Navigation */
 .slider-nav {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
     z-index: 10;
 }

 .slider-nav button {
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     backdrop-filter: blur(5px);
     transition: all 0.3s;
     margin: 0 15px;
 }

 .slider-nav button:hover {
     background: rgba(255, 255, 255, 0.4);
     transform: scale(1.1);
 }

 /* Slider Dots */
 .slider-dots {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s;
 }

 .dot.active {
     background: var(--ana-renk);
     transform: scale(1.2);
 }

 /* Responsive Tasarım */
 @media (max-width: 992px) {
     .property-slider {
         margin: 30px 20px;
     }

     .slider-track {
         height: 450px;
     }

     .property-info h3 {
         font-size: 24px;
     }
 }

 @media (max-width: 768px) {
     .slider-track {
         height: 400px;
     }

     .property-info {
         padding: 20px;
         padding-top: 50px;
         padding-left: 60px;
     }

     .property-details {
         gap: 15px;
     }

     .slider-nav button {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }
 }

 @media (max-width: 576px) {
     .slider-track {
         height: 350px;
     }

     .property-info h3 {
         font-size: 20px;
     }

     .price {
         font-size: 20px;
     }

     .detail-item {
         font-size: 14px;
     }

     .slider-dots {
         bottom: 10px;
     }
 }


 /* hakkımızda ve kart */
 .dencontainer {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .densection {
     padding: 60px 0;
 }

 .densection-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 36px;
     color: #2a2d34;
     position: relative;
 }

 .densection-title:after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--ana-renk);
 }

 /* Hakkımızda Bölümü */
 .denabout-section {
     background: #fff;
 }

 .denabout-content {
     display: flex;
     align-items: center;
     gap: 50px;
 }

 .denabout-text {
     flex: 1;
 }

 .denabout-text h2 {
     font-size: 35px;
     margin-bottom: 20px;
     color: #2a2d34;
     text-align: center;
 }

 .denabout-text p {
     margin-bottom: 20px;
     font-size: 20px;
     color: #555;
     text-align: center;
 }

 .denabout-stats {
     display: flex;
     gap: 30px;
     margin-top: 30px;
     justify-content: center;
 }

 .denstat-item {
     text-align: center;
 }

 .denstat-number {
     font-size: 36px;
     font-weight: 700;
     color: var(--ana-renk);
     margin-bottom: 5px;
 }

 .denstat-label {
     font-size: 14px;
     color: #777;
 }

 /* Daire Tipleri Bölümü */
 .denproperty-types {
     margin-top: 40px;
     margin-bottom: 40px;
 }

 .denproperty-cards {
     display: flex;
     justify-content: center;
     gap: 30px;
     
 }
 @media (max-width: 768px) {
     .denproperty-cards {
         flex-direction: column;
         align-items: center;
     }
 }

 .denproperty-card {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;
     position: relative;
     min-height: 580px;
     width: 367px;
    
 }

 .denproperty-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .denproperty-img {
     height: 250px;
     overflow: hidden;
 }

 .denproperty-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .denproperty-card:hover .denproperty-img img {
     transform: scale(1.05);
 }

 .denproperty-info {
     padding: 25px;
 }

 .denproperty-info h3 {
     font-size: 22px;
     margin-bottom: 10px;
     color: #2a2d34;
 }

 .denproperty-price {
     font-size: 20px;
     font-weight: 700;
     color: var(--ana-renk);
     margin-bottom: 15px;
 }

 .denproperty-features {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 20px;
 }

 .denfeature {
     display: flex;
     align-items: center;
     font-size: 14px;
 }

 .denfeature i {
     margin-right: 5px;
     color: var(--ana-renk);
 }

 .denbtn {
     display: inline-block;
     padding: 12px 25px;
     background: #2a2d34;
     color: #fff;
     border-radius: 5px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s;
     border: none;
     cursor: pointer;
     font-size: 16px;
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
 }


 .denbtn:hover {
     background: var(--ana-renk);
     color: #2a2d34;
 }

 /* Responsive Tasarım */
 @media (max-width: 992px) {
     .denabout-content {
         flex-direction: column;
     }

     .denproperty-cards {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .densection {
         padding: 40px 0;
     }

     .densection-title {
         font-size: 30px;
         margin-bottom: 40px;
     }

     .denabout-stats {
         flex-wrap: wrap;
         justify-content: center;
     }
 }

 @media (max-width: 576px) {
     .denproperty-cards {
         grid-template-columns: 1fr;
     }

     .densection-title {
         font-size: 26px;
     }
 }

 /* iletisim */
 .racontainer {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .rasection {
     padding: 60px 0;
 }

 .rasection-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 36px;
     color: #2a2d34;
     position: relative;
 }

 .rasection-title:after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--ana-renk);
 }

 /* İletişim Formu Bölümü */
 .racontact-section {
     background: #fff;
     margin-top: 50px;
     margin-bottom: 50px;
 }

 .racontact-container {
     display: flex;
     gap: 40px;
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }

 .racontact-info {
     flex: 1;
     padding: 40px;
     background: #2a2d34;
     color: #fff;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;

 }

 .racontact-info h3 {
     font-size: 24px;
     margin-bottom: 30px;
     color: var(--ana-renk);
     text-align: center;
 }

 .rainfo-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
     position: relative;
     min-width: 260px;
 }

 .rainfo-icon {
     font-size: 20px;
     color: var(--ana-renk);
     margin-right: 15px;
     margin-top: 5px;
 }

 .rainfo-content h4 {
     font-size: 18px;
     margin-bottom: 5px;
 }

 .rainfo-content p,
 .rainfo-content a {
     color: #d1d5db;
     text-decoration: none;
     transition: color 0.3s;
 }

 .rainfo-content a:hover {
     color: var(--ana-renk);
 }

 .rasocial-links {
     display: flex;
     gap: 15px;
     margin-top: 30px;
     position: relative;


 }

 .rasocial-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: #fff;
     transition: all 0.3s;
     text-decoration: none;
 }

 .rasocial-links a:hover {
     background: var(--ana-renk);
     transform: translateY(-3px);
 }

 /* Teklif Formu */
 .raoffer-form {
     flex: 1;
     padding: 40px;
 }

 .raform-group {
     margin-bottom: 20px;
 }

 .raform-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #2a2d34;
 }

 .raform-control {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 16px;
     transition: border 0.3s;
 }

 .raform-control:focus {
     outline: none;
     border-color: var(--ana-renk);
 }

 .raform-textarea {
     min-height: 120px;
     resize: vertical;
 }

 .rabtn-submit {
     background: var(--ana-renk);
     color: #2a2d34;
     border: none;
     padding: 14px 30px;
     font-size: 16px;
     font-weight: 600;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.3s;
     width: 100%;
     margin-top: 10px;
 }

 .rabtn-submit:hover {
     background: var(--hover-renk);
     transform: translateY(-2px);
 }

 .raproperty-select {
     margin-top: 10px;
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
 }

 .raproperty-option {
     flex: 1;
     text-align: center;
 }

 .raproperty-option input[type="radio"] {
     display: none;
 }

 .raproperty-option label {
     display: block;
     padding: 15px;
     background: #f5f7fa;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.3s;
     border: 2px solid transparent;
 }

 .raproperty-option input[type="radio"]:checked+label {
     background: var(--ana-renk);
     color: #2a2d34;
     border-color: var(--hover-renk);
     font-weight: 600;
 }

 /* Responsive Tasarım */
 @media (max-width: 992px) {
     .racontact-container {
         flex-direction: column;
     }

     .racontact-info,
     .raoffer-form {
         padding: 30px;
     }
 }

 @media (max-width: 576px) {
     .rasection {
         padding: 40px 0;
     }

     .rasection-title {
         font-size: 28px;
         margin-bottom: 30px;
     }

     .raproperty-select {
         flex-direction: column;
         gap: 10px;
     }
 }



 /* konut detyayları */

 .kaycontainer {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .kaysection {
     padding: 40px 0;
 }

 /* Konut Detay Üst Kısım */
 .kayproperty-detail {
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     margin-bottom: 30px;
 }

 .kaydetail-header {
     padding: 20px;
     border-bottom: 1px solid #eee;
 }

 .kaydetail-header h1 {
     font-size: 28px;
     color: #2a2d34;
     margin-bottom: 5px;
 }

 .kaydetail-location {
     display: flex;
     align-items: center;
     color: #777;
     margin-bottom: 10px;
 }

 .kaydetail-location i {
     margin-right: 8px;
     color: var(--ana-renk);
 }

 .kaydetail-price {
     font-size: 24px;
     font-weight: 700;
     color: var(--ana-renk);
 }

 /* Detay İçerik */
 .kaydetail-content {
     display: flex;
     padding: 20px;
 }

 /* Küçük Slider */
 .kayproperty-slider {
     flex: 1;
     min-width: 0;
     /* Flexbox overflow sorunu için */
     margin-right: 30px;
 }

 .kaymain-slide {
     height: 400px;
     overflow: hidden;
     border-radius: 8px;
     margin-bottom: 15px;
     position: relative;
 }

 .kaymain-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .kaythumbnail-slider {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
     gap: 10px;
     max-height: 140px;
     /* 2 satır yüksekliği (60px resim + boşluklar) */
     overflow-y: auto;
     /* fazla olursa dikey scroll */
 }

 .kaythumbnail {
     width: 100%;
     height: 60px;
     border-radius: 5px;
     overflow: hidden;
     cursor: pointer;
     border: 2px solid transparent;
     transition: all 0.3s;
 }

 .kaythumbnail:hover,
 .kaythumbnail.active {
     border-color: var(--ana-renk);
 }

 .kaythumbnail img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 /* Konut Özellikleri */
 .kayproperty-features {
     flex: 1;
 }

 .kayfeatures-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
     margin-bottom: 25px;
 }

 .kayfeature-item {
     display: flex;
     align-items: center;
     padding: 12px;
     background: #f5f7fa;
     border-radius: 8px;
 }

 .kayfeature-icon {
     width: 40px;
     height: 40px;
     background: var(--ana-renk);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     font-size: 18px;
 }

 .kayfeature-text h4 {
     font-size: 14px;
     color: #777;
     margin-bottom: 3px;
 }

 .kayfeature-text p {
     font-size: 16px;
     font-weight: 600;
     color: #2a2d34;
 }

 .kayhighlight-features {
     margin-bottom: 25px;
 }

 .kayhighlight-features h3 {
     font-size: 20px;
     margin-bottom: 15px;
     color: #2a2d34;
     position: relative;
     padding-bottom: 10px;
 }

 .kayhighlight-features h3:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--ana-renk);
 }

 .kayhighlight-list {
     list-style: none;
 }

 .kayhighlight-list li {
     margin-bottom: 8px;
     position: relative;
     padding-left: 25px;
 }

 .kayhighlight-list li:before {
     content: '\f00c';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--ana-renk);
 }

 .kaycontact-agent {
     background: #2a2d34;
     padding: 20px;
     border-radius: 8px;
     color: #fff;
 }

 .kaycontact-agent h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: var(--ana-renk);
 }

 .kayagent-info {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
 }

 .kayagent-photo {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     overflow: hidden;
     margin-right: 15px;
     border: 3px solid var(--ana-renk);
 }

 .kayagent-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .kayagent-details h4 {
     font-size: 18px;
     margin-bottom: 5px;
 }

 .kayagent-details p {
     font-size: 14px;
     color: #d1d5db;
 }

 .kaybtn-contact {
     display: block;
     width: 100%;
     padding: 12px;
     background: var(--ana-renk);
     color: #2a2d34;
     text-align: center;
     border-radius: 5px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s;
 }

 .kaybtn-contact:hover {
     background: var(--hover-renk);
 }

 /* Konut Açıklaması */
 .kayproperty-description {
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     padding: 30px;
     margin-bottom: 30px;
 }

 .kayproperty-description h2 {
     font-size: 24px;
     margin-bottom: 20px;
     color: #2a2d34;
     position: relative;
     padding-bottom: 15px;
 }

 .kayproperty-description h2:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 3px;
     background: var(--ana-renk);
 }

 .kaydescription-text {
     line-height: 1.8;
 }

 .kaydescription-text p {
     margin-bottom: 15px;
 }

 /* Responsive Tasarım */
 @media (max-width: 992px) {
     .kaydetail-content {
         flex-direction: column;
     }

     .kayproperty-slider {
         margin-right: 0;
         margin-bottom: 30px;
     }

     .kaymain-slide {
         height: 350px;
     }
 }

 @media (max-width: 768px) {
     .kayfeatures-grid {
         grid-template-columns: 1fr;
     }

     .kaymain-slide {
         height: 300px;
     }

     .kaydetail-header h1 {
         font-size: 24px;
     }
 }

 @media (max-width: 576px) {
     .kaymain-slide {
         height: 250px;
     }

     .kaydetail-price {
         font-size: 20px;
     }

     .kayproperty-description {
         padding: 20px;
     }
 }


 .kayarrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     font-size: 30px;
     color: #fff;
     background-color: rgba(0, 0, 0, 0.3);
     padding: 8px 12px;
     border-radius: 4px;
     cursor: pointer;
     z-index: 2;
     transition: background-color 0.3s;
 }

 .kayarrow:hover {
     background-color: rgba(0, 0, 0, 0.6);
 }

 .kayarrow-left {
     left: 10px;
 }

 .kayarrow-right {
     right: 10px;
 }

 .kaylightbox {
     display: none;
     position: fixed;
     z-index: 999;
     padding-top: 60px;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.9);
 }

 .kaylightbox-content {
     margin: auto;
     display: block;
     width: 60%;
     height: auto;
     max-width: 90%;
     max-height: 90%;
     animation: fadeIn 0.3s ease-in-out;
     margin-top: 50px;
 }



 .kayclose {
     position: absolute;
     top: 80px;
     right: 80px;
     color: #fff;
     font-size: 30px;
     cursor: pointer;
     z-index: 9999;
 }

 @media only screen and (max-width: 768px) {
     .kaylightbox-content {
         position: relative;
         top: 15%;
         width: 90%;
         max-width: 100%;
     }

     .kayclose {
         top: 100px;
         right: 30px;
     }
 }

 .kayclose:hover {
     color: var(--ana-renk);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }


 /* hakkımızda ve kart */
 .caycontainer {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .caysection {
     padding: 60px 0;
 }

 .caysection-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 36px;
     color: #2a2d34;
     position: relative;
 }

 .caysection-title:after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--ana-renk);
 }

 /* Hero Bölümü */
 .cayabout-hero {
     background: linear-gradient(rgba(42, 45, 52, 0.8), rgba(42, 45, 52, 0.8)),
         url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
     background-size: cover;
     background-position: center;
     color: #fff;
     text-align: center;
     padding: 100px 20px;
 }

 .cayabout-hero h1 {
     font-size: 48px;
     margin-bottom: 20px;
 }

 .cayabout-hero p {
     font-size: 20px;
     max-width: 800px;
     margin: 0 auto;
 }

 /* Hakkımızda İçerik */
 .cayabout-content {
     display: flex;
     align-items: center;
     gap: 50px;
     margin-bottom: 60px;
 }

 .cayabout-text {
     flex: 1;
 }

 .cayabout-text h2 {
     font-size: 32px;
     margin-bottom: 20px;
     color: #2a2d34;
 }

 .cayabout-text p {
     margin-bottom: 15px;
     font-size: 16px;
     color: #555;
 }

 .cayabout-image {
     flex: 1;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .cayabout-image img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.5s;
 }

 .cayabout-image:hover img {
     transform: scale(1.05);
 }

 /* Vizyon & Misyon */
 .caymission-vision {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }

 .caymission-card,
 .cayvision-card {
     background: #fff;
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     text-align: center;
     transition: transform 0.3s;
 }

 .caymission-card:hover,
 .cayvision-card:hover {
     transform: translateY(-10px);
 }

 .caycard-icon {
     width: 80px;
     height: 80px;
     background: var(--ana-renk);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 30px;
     color: #fff;
 }

 .caymission-card h3,
 .cayvision-card h3 {
     font-size: 24px;
     margin-bottom: 15px;
     color: #2a2d34;
 }

 /* Ekibimiz */
 .cayteam-section {
     background: #f5f7fa;
 }

 .cayteam-members {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .cayteam-member {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .cayteam-member:hover {
     transform: translateY(-10px);
 }

 .caymember-photo {
     height: 300px;
     overflow: hidden;
 }

 .caymember-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .cayteam-member:hover .caymember-photo img {
     transform: scale(1.1);
 }

 .caymember-info {
     padding: 25px;
     text-align: center;
 }

 .caymember-info h3 {
     font-size: 20px;
     margin-bottom: 5px;
     color: #2a2d34;
 }

 .caymember-info p {
     color: var(--ana-renk);
     font-weight: 600;
     margin-bottom: 15px;
 }

 .caymember-social {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .caymember-social a {
     width: 35px;
     height: 35px;
     background: #f5f7fa;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2a2d34;
     transition: all 0.3s;
     text-decoration: none;
 }

 .caymember-social a:hover {
     background: var(--ana-renk);
     color: #fff;
 }

 /* İstatistikler */
 .caystats-section {
     background: linear-gradient(rgba(42, 45, 52, 0.9), rgba(42, 45, 52, 0.9)),
         url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
     background-size: cover;
     background-position: center;
     color: #fff;
     text-align: center;
     padding: 80px 0;
 }

 .caystats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
 }

 .caystat-item {
     padding: 30px;
 }

 .caystat-number {
     font-size: 50px;
     font-weight: 700;
     color: var(--ana-renk);
     margin-bottom: 10px;
 }

 .caystat-label {
     font-size: 18px;
 }

 /* Responsive Tasarım */
 @media (max-width: 992px) {
     .cayabout-content {
         flex-direction: column;
     }

     .cayabout-hero h1 {
         font-size: 36px;
     }

     .cayabout-hero p {
         font-size: 18px;
     }
 }

 @media (max-width: 768px) {
     .caysection {
         padding: 40px 0;
     }

     .caysection-title {
         font-size: 30px;
         margin-bottom: 40px;
     }

     .cayabout-hero {
         padding: 80px 20px;
     }
 }

 @media (max-width: 576px) {
     .cayabout-hero h1 {
         font-size: 28px;
     }

     .caymission-vision {
         grid-template-columns: 1fr;
     }

     .caystat-number {
         font-size: 40px;
     }
 }



 /* bloglar */

 .sevbody {
     margin: 0;
     padding: 0;
     font-family: Arial, sans-serif;
     background-color: #f5f5f5;
     color: #333;
 }

 .sevcontainer {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px 0;
 }

 /* Header */
 .sevheader {
     background-color: #2a2d34;
     padding: 20px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .sevheader-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sevlogo {
     color: #fff;
     font-size: 24px;
     font-weight: bold;
 }

 .sevlogo span {
     color: var(--ana-renk);
 }

 .sevnav {
     display: flex;
     gap: 20px;
 }

 .sevnav a {
     color: #fff;
     text-decoration: none;
     font-size: 16px;
     transition: color 0.3s;
 }

 .sevnav a:hover {
     color: var(--ana-renk);
 }

 /* Blog Başlık */
 .sevblog-header {
     text-align: center;
     margin: 40px 0;
 }

 .sevblog-title {
     font-size: 36px;
     color: #2a2d34;
     margin-bottom: 15px;
 }

 .sevblog-subtitle {
     font-size: 18px;
     color: #666;
 }

 /* Blog Grid */
 .sevblog-grid {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-bottom: 50px;
 }
 
 @media (max-width: 768px) {
     .sevblog-grid {
         flex-direction: column;
         align-items: center;
     }
 }

 /* Blog Kart */
 .sevblog-card {
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;

     /* Kart içeriğini dikey olarak düzenle */
     display: flex;
     flex-direction: column;
     min-height: 500px;
     width: 367px;
 }


 .sevblog-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .sevblog-image {
     height: 200px;
     overflow: hidden;
 }

 .sevblog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .sevblog-card:hover .sevblog-image img {
     transform: scale(1.05);
 }

 .sevblog-content {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     flex-grow: 1;
     padding: 20px;
 }


 .sevblog-category {
     display: inline-block;
     background: var(--ana-renk);
     color: #fff;
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 12px;
     margin-bottom: 10px;
     width: fit-content;
 }

 .sevblog-card-title {
     font-size: 20px;
     color: #2a2d34;
     margin-bottom: 10px;
     line-height: 1.4;

 }


 .sevblog-excerpt {
     margin-bottom: auto;
     /* Arayı esnet */
 }

 .sevblog-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     color: #999;
     margin-top: 20px;
     /* İsteğe bağlı */
 }

 .sevread-more {
     display: inline-block;
     color: var(--ana-renk);
     font-weight: bold;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s;
 }

 .sevread-more:hover {
     color: var(--hover-renk);
 }



 /* Responsive */
 @media (max-width: 768px) {
     .sevblog-grid {
         grid-template-columns: 1fr;
     }

     .sevheader-content {
         flex-direction: column;
         gap: 15px;
     }

     .sevnav {
         flex-wrap: wrap;
         justify-content: center;
     }

     .sevblog-title {
         font-size: 28px;
     }
 }

 .ayyyslider {
     width: auto;
     overflow: hidden;
     height: 100px;
     position: relative;
     max-width: 1200px;
     margin: 50px auto;
 }

 /* Varsayılan - 7 veya daha fazla öğe için */
.ayyyslider-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 10s linear infinite;
    
}

/* 7'den az öğe için özel stil */
@media (min-width: 768px){
    .ayyyslider-track:has(> :nth-child(6):last-child),
.ayyyslider-track:has(> :nth-child(5):last-child),
.ayyyslider-track:has(> :nth-child(4):last-child),
.ayyyslider-track:has(> :nth-child(3):last-child),
.ayyyslider-track:has(> :nth-child(2):last-child),
.ayyyslider-track:has(> :nth-child(1):last-child) {
    animation: none;
    width: auto;
    justify-content: center;
}

}   
 @media (max-width: 768px) {

     .ayyyslider-track:has(> :nth-child(2):last-child),
     .ayyyslider-track:has(> :nth-child(1):last-child) {
         animation: none;
         width: auto;
         justify-content: center;
     }
    }
 .ayyyslide {
     width: 200px;
     height: 100px;

 }

 .ayyyslider img {
     width: 200px;
     height: 100px;
     background-color: transparent;
     object-fit: contain;

 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-250px *2))
     }
 }

 @media only screen and (max-width: 768px) {
     .ayyyslider-track {
         width: calc(250px *7);
     }

     @keyframes scroll {
         0% {
             transform: translateX(0);
         }

         100% {
             transform: translateX(calc(-250px *1))
         }
     }
 }


 .foyybody {
     margin: 0;
     padding: 0;
     font-family: Arial, sans-serif;
     background-color: #f5f5f5;
     color: #333;
     line-height: 1.6;
 }

 .foyycontainer {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 50px 0;
 }

 /* Header */
 .foyyheader {
     background-color: #2a2d34;
     padding: 20px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .foyyheader-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .foyylogo {
     color: #fff;
     font-size: 24px;
     font-weight: bold;
 }

 .foyylogo span {
     color: var(--ana-renk);
 }

 .foyynav {
     display: flex;
     gap: 20px;
 }

 .foyynav a {
     color: #fff;
     text-decoration: none;
     font-size: 16px;
     transition: color 0.3s;
 }

 .foyynav a:hover {
     color: var(--ana-renk);
 }

 /* Ana Resim */
 .foyyfeatured-image {
     width: 100%;
     height: 500px;
     border-radius: 8px;
     overflow: hidden;
     margin-bottom: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .foyyfeatured-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Blog İçerik */
 .foyyblog-content {
     background: #fff;
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin-bottom: 40px;
 }

 .foyyblog-title {
     font-size: 32px;
     color: #2a2d34;
     margin-bottom: 20px;
 }

 .foyyblog-meta {
     display: flex;
     gap: 20px;
     margin-bottom: 30px;
     color: #777;
     font-size: 14px;
 }

 .foyyblog-meta span {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .foyyblog-meta i {
     color: var(--ana-renk);
 }

 .foyyblog-text {
     color: #444;
     margin-bottom: 30px;
     font-size: 16px;
 }

 /* Resim Galerisi */
 .foyygallery-section {
     margin-bottom: 50px;
 }

 .foyygallery-title {
     font-size: 24px;
     color: #2a2d34;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--ana-renk);
 }

 .foyygallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
 }

 .foyygallery-item {
     height: 250px;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
 }

 .foyygallery-item:hover {
     transform: scale(1.03);
 }

 .foyygallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Footer */
 .foyyfooter {
     background: #2a2d34;
     color: #fff;
     padding: 30px 0;
     text-align: center;
 }

 .foyyfooter-content {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .foyyfooter-links {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
 }

 .foyyfooter-links a {
     color: #fff;
     text-decoration: none;
     transition: color 0.3s;
 }

 .foyyfooter-links a:hover {
     color: var(--ana-renk);
 }

 .foyycopyright {
     font-size: 14px;
     color: #aaa;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .foyyfeatured-image {
         height: 400px;
     }
 }

 @media (max-width: 768px) {
     .foyyheader-content {
         flex-direction: column;
         gap: 15px;
     }

     .foyynav {
         flex-wrap: wrap;
         justify-content: center;
     }

     .foyyfeatured-image {
         height: 300px;
     }

     .foyyblog-content {
         padding: 25px;
     }

     .foyyblog-title {
         font-size: 26px;
     }
 }

 @media (max-width: 576px) {
     .foyyfeatured-image {
         height: 250px;
     }

     .foyyblog-meta {
         flex-direction: column;
         gap: 10px;
     }

     .foyygallery-grid {
         grid-template-columns: 1fr;
     }
 }


 .att-modal {
     display: none;
     position: fixed;
     align-content: center;
     z-index: 1000;
     padding-top: 50px;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     overflow: auto;
 }

 .att-modal-content {
     margin: auto;
     display: block;
     width: 80%;
     max-height: 90%;
     object-fit: cover;
     animation: att-zoom 0.3s;
 }

 @keyframes att-zoom {
     from {
         transform: scale(0.5)
     }

     to {
         transform: scale(1)
     }
 }

 .att-close {
     position: absolute;
     top: 15px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
     cursor: pointer;
 }

 .att-close:hover {
     color: #bbb;
 }

 .att-caption {
     margin: auto;
     display: block;
     width: 80%;
     max-width: 1200px;
     text-align: center;
     color: #ccc;
     padding: 10px 0;
     font-size: 18px;
 }

 @media only screen and (max-width: 768px) {
    .att-modal-content {
        width: 95%;
        max-height: 40%;
        object-fit: cover;
    }

    .att-caption {
        width: 95%;
    }
}

/* PDF Katalog Bölümü Stilleri */
.pdf-catalog-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Videolar Bölümü Stilleri */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.videos-section .dencontainer {
    position: relative;
    z-index: 2;
}

.videos-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center;
}

/* Video Grid - Ana Sayfa */
.videos-section .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.videos-section .video-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.videos-section .video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 180, 0, 0.05) 0%, rgba(230, 162, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.videos-section .video-item:hover::before {
    opacity: 1;
}

.videos-section .video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--ana-renk, #f8b400);
}

.videos-section .video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px 16px 0 0;
}

.videos-section .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.videos-section .video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.videos-section .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.videos-section .video-item:hover .video-play-icon {
    background: var(--ana-renk, #f8b400);
    transform: translate(-50%, -50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(248, 180, 0, 0.4);
}

.videos-section .video-play-icon i {
    margin-left: 4px;
}

.videos-section .video-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.videos-section .video-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a2d34;
    margin: 0 0 10px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section .video-item:hover .video-item-title {
    color: var(--ana-renk, #f8b400);
}

.videos-section .video-item-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section .video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.videos-section .video-category {
    background: linear-gradient(135deg, var(--ana-renk, #f8b400) 0%, var(--ikincil-renk, #e6a200) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(248, 180, 0, 0.3);
}

.videos-section .video-meta span:last-child {
    color: #999;
    font-weight: 500;
}

/* Tüm Videoları Görüntüle Butonu */
.videos-section .btn {
    background: linear-gradient(135deg, var(--ana-renk, #f8b400) 0%, var(--ikincil-renk, #e6a200) 100%);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(248, 180, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.videos-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.videos-section .btn:hover::before {
    left: 100%;
}

.videos-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(248, 180, 0, 0.4);
}

.videos-section .btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .videos-section .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 60px 0;
    }
    
    .videos-section .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .videos-section .video-thumbnail {
        height: 160px;
    }
    
    .videos-section .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .videos-section .video-content {
        padding: 15px;
    }
    
    .videos-section .video-item-title {
        font-size: 16px;
    }
    
    .videos-section .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .videos-section .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .videos-section .video-thumbnail {
        height: 200px;
    }
    
    .videos-section .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .videos-section .video-content {
        padding: 20px;
    }
    
    .videos-section .video-item-title {
        font-size: 18px;
    }
}

.pdf-catalog-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.pdf-catalog-content {
    flex: 1;
}

.pdf-catalog-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 20px 0 30px;
}

.pdf-catalog-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pdf-catalog-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-catalog-btn.primary {
    background: var(--ana-renk);
    color: white;
}

.pdf-catalog-btn.primary:hover {
    background: var(--hover-renk);
    transform: translateY(-2px);
}

.pdf-catalog-btn.secondary {
    background: transparent;
    color: var(--ana-renk);
    border: 2px solid #007bff;
}

.pdf-catalog-btn.secondary:hover {
    background: var(--ana-renk);
    color: white;
    transform: translateY(-2px);
}

.pdf-catalog-preview {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.pdf-preview-image {
    width: 200px;
    height: 250px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 48px;
    transition: transform 0.3s ease;
}

.pdf-preview-image:hover {
    transform: scale(1.05);
}

.pdf-preview-image span {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* PDF Modal Stilleri */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.pdf-modal-content {
    position: relative;
    background-color: white;
    margin: 1% auto;
    width: 98%;
    height: 95%;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.pdf-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.pdf-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-zoom-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
}

.pdf-zoom-btn:hover {
    background: #0056b3;
}

.pdf-zoom-level {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 50px;
    text-align: center;
}

.pdf-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pdf-close:hover {
    color: #000;
}

.pdf-modal-body {
    flex: 1;
    padding: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pdf-flipbook-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-loading {
    text-align: center;
    color: #666;
}

.pdf-loading i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #007bff;
}

/* Flipbook Stilleri */
#flipbook {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-radius: 12px;
    background: #f0f0f0;
    min-width: 800px;
    min-height: 600px;
}

#flipbook .page {
    background: white;
    border-radius: 8px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

#flipbook .page canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: auto;
    image-rendering: smooth;
}

/* Turn.js sayfa çevirme efektleri */
#flipbook .hard {
    background: #f0f0f0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

#flipbook .hard.p1 {
    background: #f0f0f0;
}

#flipbook .hard.p2 {
    background: #f0f0f0;
}

/* PDF Katalog Responsive Tasarım */
@media (max-width: 768px) {
    .pdf-catalog-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .pdf-catalog-preview {
        flex: none;
    }
    
    .pdf-catalog-buttons {
        justify-content: center;
    }
    
    .pdf-modal-content {
        width: 98%;
        height: 95%;
        margin: 1% auto;
    }
    
    .pdf-modal-header {
        padding: 15px 20px;
    }
    
    .pdf-modal-header h3 {
        font-size: 20px;
    }
    
    .pdf-modal-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .pdf-catalog-section {
        padding: 60px 0;
    }
    
    .pdf-catalog-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-catalog-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .pdf-preview-image {
        width: 150px;
        height: 200px;
        font-size: 36px;
    }
}