/* IZMEDYA ADDONS - GLOBAL STYLES (FULL PACKAGE - v1.6.0)
   Includes: Hero, Slider (Accordion), About, Stats, Project Detail, Portfolio, Blog, Footer, IzSlider, IzKutu
*/

/* ----------------------------------------------------------- */
/* 1. HERO SECTION WIDGET */
/* ----------------------------------------------------------- */
/* --- Widget Container --- */
.my-custom-widget-container {
    width: 100%;
    position: relative;
    padding-bottom: 50px; /* Pagination için boşluk */
    overflow: hidden;
}

.my-custom-widget-swiper {
    width: 100%;
    height: 550px;
    padding-bottom: 40px !important; /* Gölge ve taşmalar için */
    padding-top: 10px;
}

/* --- Slide Logic (Accordion Effect) --- */
.my-custom-widget-slide {
    width: 300px; /* Varsayılan genişlik */
    height: 100%;
    transition: width 0.5s ease-in-out;
}

/* Masaüstünde hover olunca genişle */
@media (min-width: 1024px) {
    .my-custom-widget-slide:hover {
        width: 450px !important;
    }
}

/* --- Card Structure --- */
.my-custom-widget-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f3f3f3;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.my-custom-widget-slide:hover .my-custom-widget-card {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Image Area --- */
.my-custom-widget-img-wrapper {
    height: 85%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.my-custom-widget-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.my-custom-widget-slide:hover .my-custom-widget-img {
    transform: scale(1.1);
}

/* --- Text Content Area --- */
.my-custom-widget-content {
    height: 15%;
    width: 100%;
    background-color: #FCF9F6;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.my-custom-widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.my-custom-widget-desc {
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.7;
}

/* --- Navigation Buttons --- */
.my-custom-widget-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.my-custom-widget-prev {
    left: 10px;
    right: auto;
}

.my-custom-widget-next {
    right: 10px;
    left: auto;
}

.my-custom-widget-nav-btn i {
    font-size: 20px;
}

.my-custom-widget-nav-btn:hover {
    color: #fff !important; 
    /* Background color PHP'den geliyor */
}

/* --- Pagination --- */
.my-custom-widget-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .my-custom-widget-swiper {
        height: 450px;
    }
}
.my-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}
.my-hero-bg-wrapper { position: absolute; inset: 0; z-index: 0; }
.my-hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.my-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%); opacity: 1; }
.my-hero-container { position: relative; z-index: 10; color: #fff; width: 100%; max-width: 1240px; padding: 0 1rem; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.my-hero-content-inner { max-width: 56rem; }
.my-hero-badge-wrapper { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.my-hero-badge-line { height: 2px; width: 4rem; background-color: #fff; }
.my-hero-badge-text { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.875rem; font-weight: 700; color: #fff; background-color: rgba(255, 255, 255, 0.2); padding: 0.25rem 0.75rem; backdrop-filter: blur(4px); border-radius: 0.25rem; }
.my-hero-title { font-size: 3.75rem; font-weight: 700; line-height: 1.1; margin-bottom: 2rem; filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }
@media (min-width: 768px) { .my-hero-title { font-size: 6rem; } }
@media (min-width: 1024px) { .my-hero-title { font-size: 8rem; } }
.my-hero-title-highlight { font-style: italic; background: linear-gradient(to right, #86efac, #dcfce7, #ffffff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.my-hero-desc { font-size: 1.25rem; color: #f3f4f6; margin-bottom: 3rem; max-width: 42rem; font-weight: 300; line-height: 1.625; filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)); }
.my-hero-btn-group { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .my-hero-btn-group { flex-direction: row; } }
.my-hero-btn { padding: 1.25rem 3rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.875rem; border-radius: 0.25rem; transition: all 0.3s ease; text-decoration: none; text-align: center; border: 2px solid transparent; }
.my-hero-btn-primary { background-color: #2d5a27; color: #fff; border-color: #2d5a27; }
.my-hero-btn-primary:hover { background-color: #fff !important; }
.my-hero-btn-outline { background-color: transparent; color: #fff; border-color: #fff; }
.my-hero-btn-outline:hover { background-color: #fff; color: #1a1d1a; }
.my-hero-scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.5rem; opacity: 0.7; }
@keyframes my-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.my-animate-pulse { animation: my-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes my-bounce { 0%, 100% { transform: translateX(-50%) translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); } 50% { transform: translateX(-50%) translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); } }
.my-animate-bounce { animation: my-bounce 1s infinite; }

/* ----------------------------------------------------------- */
/* 2. ACCORDION SLIDER WIDGET (Ozel_Tasarim_Widget) */
/* ----------------------------------------------------------- */
.my-custom-widget-container { width: 100%; position: relative; overflow: hidden; padding-bottom: 60px; min-height: 550px; display: block; }
.my-custom-widget-swiper { width: 100%; height: 550px; padding: 10px 10px 40px 10px !important; overflow: visible !important; }
/* Mobil ve Genel Slide Yapısı */
.my-custom-widget-swiper .swiper-slide { height: 100%; width: 85% !important; margin-right: 24px; flex-shrink: 0 !important; transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
/* Masaüstü Akordeon Efekti */
@media (min-width: 1024px) { .my-custom-widget-swiper .swiper-slide { width: 300px !important; } .my-custom-widget-swiper .swiper-slide:hover { width: 450px !important; } }
.my-custom-widget-card { height: 100%; display: flex; flex-direction: column; border-radius: 2rem; overflow: hidden; cursor: pointer; border: 1px solid #f3f3f3; background: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: all 0.3s ease; position: relative; }
.my-custom-widget-swiper .swiper-slide:hover .my-custom-widget-card { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); transform: translateY(-5px); }
.my-custom-widget-img-wrapper { height: 85%; width: 100%; position: relative; overflow: hidden; }
.my-custom-widget-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.my-custom-widget-swiper .swiper-slide:hover .my-custom-widget-img { transform: scale(1.1); }
.my-custom-widget-content { height: 15%; width: 100%; background-color: #FCF9F6; padding: 0 1.5rem; display: flex; flex-direction: column; justify-content: center; border-top: 1px solid #eee; z-index: 2; position: relative; }
.my-custom-widget-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.25rem 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #1a1d1a; }
.my-custom-widget-desc { font-size: 0.75rem; margin: 0; color: #666; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.my-custom-widget-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.3s ease; border: 1px solid #eee; }
.my-custom-widget-prev { left: 10px; } .my-custom-widget-next { right: 10px; }
.my-custom-widget-nav-btn i { font-size: 18px; color: inherit; }
.my-custom-widget-pagination { bottom: 0px !important; text-align: center; width: 100%; }
.my-custom-widget-pagination .swiper-pagination-bullet { width: 10px; height: 10px; opacity: 0.5; background: #ccc; margin: 0 5px; transition: all 0.3s; }
.my-custom-widget-pagination .swiper-pagination-bullet-active { opacity: 1; transform: scale(1.2); }

/* ----------------------------------------------------------- */
/* 3. ABOUT SECTION WIDGET */
/* ----------------------------------------------------------- */
.my-about-section { padding: 6rem 0; background-color: #fff; overflow: hidden; }
.my-about-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 5rem; align-items: center; }
@media (min-width: 1024px) { .my-about-container { flex-direction: row; align-items: flex-start; } }
.my-about-left { width: 100%; } @media (min-width: 1024px) { .my-about-left { width: 50%; } }
.my-about-subtitle { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.my-about-title { font-size: 3rem; font-weight: 700; line-height: 1.1; color: #1a1d1a; margin-bottom: 2rem; }
@media (min-width: 768px) { .my-about-title { font-size: 3.75rem; } }
.my-about-highlight { font-style: italic; }
.my-about-desc { color: #4b5563; font-size: 1.125rem; line-height: 1.625; margin-bottom: 2rem; }
.my-about-features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .my-about-features-grid { grid-template-columns: 1fr 1fr; } }
.my-about-feature-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.my-about-icon-box { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.my-about-feature-title { font-weight: 700; color: #1a1d1a; font-size: 1.25rem; margin: 0 0 0.5rem 0; }
.my-about-feature-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.5; margin: 0; }
.my-about-link { display: inline-block; margin-top: 3rem; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none; padding-bottom: 0.25rem; border-bottom-width: 2px; border-bottom-style: solid; transition: all 0.3s ease; }
.my-about-link:hover { color: #1a1d1a !important; border-color: #1a1d1a !important; }
.my-about-right { width: 100%; position: relative; } @media (min-width: 1024px) { .my-about-right { width: 50%; } }
.my-about-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.my-about-img-col-1 { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 4rem; }
.my-about-img-col-2 { display: flex; flex-direction: column; gap: 1.5rem; }
.my-about-img-1, .my-about-img-2 { width: 100%; object-fit: cover; border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.my-about-img-1 { height: 20rem; } .my-about-img-2 { height: 28rem; }
.my-about-exp-box { padding: 2rem; border-radius: 0.5rem; text-align: center; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); color: #fff; }
.my-about-exp-num { display: block; font-size: 3rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1; }
.my-about-exp-text { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

/* ----------------------------------------------------------- */
/* 4. STATS SECTION WIDGET */
/* ----------------------------------------------------------- */
.my-stats-section { padding: 5rem 0; }
.my-stats-container { max-width: 1240px; margin: 0 auto; padding: 0 1rem; }
.my-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
@media (min-width: 768px) { .my-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.my-stat-item { text-align: center; position: relative; }
@media (min-width: 768px) { .my-stat-item:not(:last-child)::after { content: ''; position: absolute; right: -1.5rem; top: 10%; height: 80%; width: 1px; background-color: rgba(0,0,0,0.1); } }
.my-stat-number { display: block; font-size: 3.75rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1; }
.my-stat-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #1a1d1a; }

/* ----------------------------------------------------------- */
/* 5. PROJECT DETAIL WIDGET */
/* ----------------------------------------------------------- */
.my-pd-section { padding: 6rem 0; background-color: #fff; overflow: hidden; }
.my-pd-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.my-pd-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .my-pd-grid { grid-template-columns: 1fr 1fr; } }
.my-pd-badge { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.my-pd-title { font-size: 2.5rem; font-weight: 700; color: #1a1d1a; margin-bottom: 1.5rem; line-height: 1.1; }
@media (min-width: 768px) { .my-pd-title { font-size: 3rem; } }
.my-pd-desc { color: #6b7280; font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.my-pd-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; border-top: 1px solid #f3f4f6; padding-top: 2rem; }
.my-pd-stat-val { display: block; font-size: 1.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.my-pd-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: #9ca3af; }
.my-pd-btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background-color: #1a1d1a; color: #fff; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; border-radius: 0.25rem; text-decoration: none; transition: background-color 0.3s ease; gap: 0.5rem; }
.my-pd-image-wrapper { position: relative; }
.my-pd-image-inner { position: relative; z-index: 10; border-radius: 2rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.my-pd-image-inner img { width: 100%; height: auto; display: block; transition: transform 0.7s ease; }
.my-pd-image-inner:hover img { transform: scale(1.05); }
.my-pd-blob { position: absolute; width: 10rem; height: 10rem; border-radius: 50%; z-index: 0; filter: blur(40px); opacity: 0.5; }
.my-pd-blob-1 { bottom: -2.5rem; left: -2.5rem; background-color: #e8f3e7; }
.my-pd-blob-2 { top: -2.5rem; right: -2.5rem; background-color: rgba(45, 90, 39, 0.1); }

/* ----------------------------------------------------------- */
/* 6. PORTFOLIO WIDGET (Manuel) */
/* ----------------------------------------------------------- */
.my-portfolio-section { padding: 8rem 0; background-color: #fff; }
.my-portfolio-container { max-width: 1800px; margin: 0 auto; padding: 0 1.5rem; }
.my-portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .my-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .my-portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.my-port-text-card, .my-port-image-card { height: 422px; border-radius: 2rem; overflow: hidden; }
.my-port-text-card { background-color: #FCF9F6; padding: 2rem; display: flex; flex-direction: column; justify-content: center; transition: box-shadow 0.5s ease; }
@media (min-width: 1280px) { .my-port-text-card { padding: 3rem; } }
.my-port-text-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.my-port-title { font-size: 1.5rem; font-weight: 700; color: #1a1d1a; margin-bottom: 1rem; line-height: 1.2; transition: color 0.3s ease; }
@media (min-width: 1280px) { .my-port-title { font-size: 1.875rem; } }
.my-port-desc { color: #6b7280; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.my-port-link { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #1a1d1a; text-decoration: none; transition: color 0.3s ease; }
.my-port-link i { margin-left: 0.5rem; font-size: 0.7rem; }
.my-port-image-card { position: relative; }
.my-port-image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.my-port-image-card:hover img { transform: scale(1.05); }
.my-port-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0); transition: background-color 0.5s ease; }
.my-port-image-card:hover .my-port-overlay { background-color: rgba(0,0,0,0.05); }

/* ----------------------------------------------------------- */
/* 7. BLOG WIDGET */
/* ----------------------------------------------------------- */
.my-blog-section { padding: 6rem 0; background-color: #f9fafb; }
.my-blog-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.my-blog-header { text-align: center; margin-bottom: 5rem; }
.my-blog-subtitle { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.my-blog-main-title { font-size: 3rem; font-weight: 700; margin-top: 1rem; color: #1a1d1a; }
.my-blog-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .my-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.my-blog-card { background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease; }
.my-blog-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.my-blog-img-wrapper { position: relative; height: 16rem; overflow: hidden; }
.my-blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.my-blog-card:hover .my-blog-img-wrapper img { transform: scale(1.1); }
.my-blog-cat { position: absolute; top: 1.25rem; left: 1.25rem; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.5rem 1rem; border-radius: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.my-blog-content { padding: 2.5rem; }
.my-blog-meta { font-size: 0.75rem; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.my-blog-meta i { margin-right: 0.5rem; }
.my-blog-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.my-blog-title a { color: #1a1d1a; text-decoration: none; transition: color 0.3s ease; }
.my-blog-excerpt { font-size: 0.875rem; color: #6b7280; margin-bottom: 1.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.my-blog-readmore { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #1a1d1a; text-decoration: none; padding-bottom: 0.25rem; border-bottom: 2px solid #e5e7eb; transition: all 0.3s ease; cursor: pointer; }

/* ----------------------------------------------------------- */
/* 8. FOOTER WIDGET */
/* ----------------------------------------------------------- */
.my-footer-section { background-color: #151715; color: #9ca3af; padding-top: 8rem; padding-bottom: 3rem; }
.my-footer-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.my-footer-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .my-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .my-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.my-footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.my-footer-brand-icon { font-size: 1.875rem; }
.my-footer-brand-name { font-size: 1.875rem; font-weight: 700; color: #fff; }
.my-footer-desc { font-size: 0.875rem; line-height: 2; margin-bottom: 2.5rem; }
.my-footer-social { display: flex; gap: 1rem; }
.my-footer-social a { width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9ca3af; text-decoration: none; transition: all 0.3s ease; }
.my-footer-social a:hover { color: #fff; }
.my-footer-title { color: #fff; font-weight: 700; font-size: 1.5rem; margin-bottom: 2.5rem; }
.my-footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2rem; }
.my-footer-contact-list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.my-footer-icon { margin-top: 0.25rem; font-size: 1.125rem; }
.my-footer-phone { font-weight: 700; color: #fff; font-size: 1.25rem; }
.my-footer-contact-list a { color: #9ca3af; text-decoration: none; transition: color 0.3s; }
.my-footer-contact-list a:hover { color: #fff; }
.my-footer-links-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.my-footer-link { font-size: 0.875rem; color: #9ca3af; text-decoration: none; transition: color 0.3s ease; display: flex; align-items: center; gap: 0.75rem; }
.my-footer-link i { font-size: 0.75rem; opacity: 0.5; }
.my-footer-form { display: flex; flex-direction: column; gap: 1rem; }
.my-footer-form input { width: 100%; background-color: #1f211f; border: 1px solid rgba(255,255,255,0.05); color: #fff; padding: 1rem 1.5rem; font-size: 0.875rem; border-radius: 0.25rem; outline: none; transition: border-color 0.3s; }
.my-footer-form input:focus { border-color: #2d5a27; }
.my-footer-btn { width: 100%; padding: 1rem; color: #fff; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; border-radius: 0.25rem; border: none; cursor: pointer; transition: background-color 0.3s, color 0.3s; }
.my-footer-btn:hover { background-color: #fff !important; color: #1a1d1a; }
.my-footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; }
@media (min-width: 768px) { .my-footer-bottom { flex-direction: row; } }

/* ----------------------------------------------------------- */
/* 9. IZSLIDER WIDGET (Carousel - Accordion Effect) */
/* ----------------------------------------------------------- */
.iz-slider-container { width: 100%; position: relative; padding-bottom: 50px; overflow: hidden; min-height: 550px; }
.iz-swiper { width: 100%; height: 550px; padding: 10px 10px 40px 10px !important; overflow: visible !important; }
.iz-slide-item { height: 100%; width: 85% !important; margin-right: 24px; flex-shrink: 0 !important; transition: width 0.5s ease-in-out; }
@media (min-width: 1024px) { .iz-slide-item { width: 300px !important; } .iz-slide-item:hover { width: 450px !important; } }
.iz-slide-card { height: 100%; display: flex; flex-direction: column; border-radius: 2rem; overflow: hidden; cursor: pointer; border: 1px solid #f3f4f6; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.iz-slide-item:hover .iz-slide-card { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.iz-slide-img { height: 85%; width: 100%; position: relative; overflow: hidden; }
.iz-slide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.iz-slide-item:hover .iz-slide-img img { transform: scale(1.1); }
.iz-slide-content { height: 15%; width: 100%; background-color: #FCF9F6; padding: 0 1.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.iz-slide-subtitle { display: none; }
.iz-slide-title { font-size: 1.25rem; font-weight: 600; color: #1a1d1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.25rem; line-height: 1.2; }
.iz-slide-desc { font-size: 0.75rem; color: #6b7280; line-height: 1.625; margin: 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.iz-slide-btn { display: none; }
.iz-slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; color: #2d5a27; cursor: pointer; z-index: 20; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.iz-slider-nav:hover { background-color: #2d5a27; color: #fff; }
.iz-slider-next { right: 10px; } .iz-slider-prev { left: 10px; }
.iz-slider-pagination { bottom: 0 !important; text-align: center; }

/* ----------------------------------------------------------- */
/* 10. IZKUTU WIDGET (Dama Grid) */
/* ----------------------------------------------------------- */
.iz-kutu { --iz-kutu-color-primary: #2d5a27; --iz-kutu-color-dark: #1a1d1a; --iz-kutu-color-text: #5c5c5c; --iz-kutu-color-bg-item: #FCF9F6; --iz-kutu-radius-item: 2rem; --iz-kutu-grid-gap: 1.5rem; padding: 4rem 0; font-family: 'Parkinsans', sans-serif; color: var(--iz-kutu-color-text); }
@media (min-width: 768px) { .iz-kutu { padding: 6rem 0; } }
.iz-kutu-container { max-width: 1800px; margin: 0 auto; padding: 0 1.5rem; }
.iz-kutu-header { text-align: center; margin-bottom: 4rem; }
.iz-kutu-title { font-size: 2.25rem; font-weight: 600; color: var(--iz-kutu-color-dark); margin: 0; line-height: 1.2; }
@media (min-width: 1024px) { .iz-kutu-title { font-size: 3.125rem; } }
.iz-kutu-subtitle { font-size: 1.125rem; color: var(--iz-kutu-color-text); margin-top: 1rem; line-height: 1.5; }
.iz-kutu-grid { display: grid; grid-template-columns: 1fr; gap: var(--iz-kutu-grid-gap); width: 100%; }
@media (min-width: 768px) { .iz-kutu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .iz-kutu-grid { grid-template-columns: repeat(4, 1fr); } .iz-kutu-item--reorder:nth-child(4n+1) { order: 1; } .iz-kutu-item--reorder:nth-child(4n+2) { order: 2; } .iz-kutu-item--reorder:nth-child(4n+3) { order: 3; } .iz-kutu-item--reorder:nth-child(4n+4) { order: 4; } }
.iz-kutu-item { height: 350px; border-radius: var(--iz-kutu-radius-item); overflow: hidden; transition: box-shadow 0.5s ease; }
.iz-kutu-item--text { background-color: var(--iz-kutu-color-bg-item); padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1280px) { .iz-kutu-item--text { padding: 3rem; } }
.iz-kutu-item--text:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.iz-kutu-item__content { margin-bottom: auto; }
.iz-kutu-item__title { font-size: 1.5rem; font-weight: 700; color: var(--iz-kutu-color-dark); margin-bottom: 1rem; line-height: 1.1; transition: color 0.3s ease; }
@media (min-width: 1280px) { .iz-kutu-item__title { font-size: 1.875rem; } }
.iz-kutu-item--text:hover .iz-kutu-item__title { color: var(--iz-kutu-color-primary); }
.iz-kutu-item__excerpt { font-size: 0.875rem; color: var(--iz-kutu-color-text); margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.6; }
.iz-kutu-item__link { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--iz-kutu-color-dark); text-decoration: none; transition: color 0.3s ease; cursor: pointer; }
.iz-kutu-item__link:hover { color: var(--iz-kutu-color-primary); }
.iz-kutu-item--image { position: relative; }
.iz-kutu-item__image-link { display: block; width: 100%; height: 100%; position: relative; }
.iz-kutu-item__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.iz-kutu-item--image:hover .iz-kutu-item__image { transform: scale(1.05); }
.iz-kutu-item__image-link::after { content: ""; position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0); transition: background-color 0.5s ease; }
.iz-kutu-item--image:hover .iz-kutu-item__image-link::after { background-color: rgba(0, 0, 0, 0.1); }

/* --- GLOBAL IMAGE FIX FOR IZMEDYA WIDGETS --- */
/* Bu kural, Elementor'un varsayılan "height: auto" ayarını ezerek 
   widget içindeki görsellerin kapsayıcıyı tam doldurmasını sağlar. */
.my-custom-widget-img,
.iz-slide-img img,
.iz-kutu-item__image,
.my-port-image-card img,
.my-blog-img-wrapper img,
.my-hero-bg-img {
    height: 100% !important;
    object-fit: cover !important; /* Görselin oranını koruyarak doldurmasını garanti eder */
}