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

:root {
    --dekor-turuncu: #e67e22;
    --dekor-turuncu-koyu: #d35400;
    --dekor-lacivert: #1a252f;
    --dekor-lacivert-acik: #2c3e50;
    --dekor-beyaz: #ffffff;
    --dekor-gri: #f8f9fa;
    --dekor-gri-koyu: #6c757d;
    --dekor-siyah: #0d0d0d;
    --dekor-altin: #f39c12;
    --gecis: all 0.3s ease;
    --golge: 0 10px 40px rgba(0,0,0,0.1);
    --golge-hover: 0 20px 60px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--dekor-lacivert);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--gecis);
}

.topbar {
    background: linear-gradient(135deg, var(--dekor-lacivert) 0%, var(--dekor-lacivert-acik) 100%);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
}

.topbar-item i {
    color: var(--dekor-turuncu);
    font-size: 14px;
}

.topbar-item:hover {
    color: var(--dekor-turuncu);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-social {
    display: flex;
    gap: 12px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--dekor-beyaz);
    font-size: 13px;
}

.topbar-social a:hover {
    background: var(--dekor-turuncu);
    transform: translateY(-2px);
}

header {
    background: var(--dekor-beyaz);
    box-shadow: var(--golge);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

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

.logo-dark {
    display: none;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    line-height: 1.2;
}

.logo-text span {
    font-size: 12px;
    color: var(--dekor-gri-koyu);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-menu .nav-mobile-btn {
    display: none;
}

.nav-menu a {
    font-weight: 700;
    font-size: 15px;
    color: var(--dekor-lacivert);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dekor-turuncu);
    transition: var(--gecis);
}

.nav-mobile-btn::after {
    display: none;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dekor-turuncu);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--gecis);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dekor-turuncu) 0%, var(--dekor-turuncu-koyu) 100%);
    color: var(--dekor-beyaz);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--dekor-lacivert);
    border: 2px solid var(--dekor-lacivert);
}

.btn-secondary:hover {
    background: var(--dekor-lacivert);
    color: var(--dekor-beyaz);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dekor-lacivert);
    border-radius: 3px;
    transition: var(--gecis);
    position: absolute;
}

.mobile-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-toggle span:nth-child(2) {
    top: 21px;
}

.mobile-toggle span:nth-child(3) {
    top: 30px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    background: #000;
}

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

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

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

.hero-slide.active img,
.hero-slide.active::after {
    animation: zoomEffect 6s ease-out forwards;
}

@keyframes zoomEffect {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-slide-1 {
    background-image: url('../images/slide/slide1.webp');
}

.hero-slide-2 {
    background-image: url('../images/slide/slide2.webp');
}

.hero-slide-3 {
    background-image: url('../images/slide/slide3.webp');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    color: var(--dekor-beyaz);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dekor-turuncu), transparent);
}

.tagline-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dekor-turuncu);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--dekor-turuncu);
}

.hero-text h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h2 span {
    color: var(--dekor-turuncu);
    position: relative;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--dekor-beyaz);
}

.btn-hero-secondary:hover {
    background: var(--dekor-beyaz);
    color: var(--dekor-lacivert);
    border-color: var(--dekor-beyaz);
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--gecis);
}

.hero-slider-dot.active {
    background: var(--dekor-turuncu);
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    background: var(--dekor-turuncu);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dekor-beyaz);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--gecis);
}

.hero-arrow:hover {
    background: var(--dekor-turuncu);
    border-color: var(--dekor-turuncu);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}


footer {
    background: var(--dekor-lacivert);
    color: var(--dekor-beyaz);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--dekor-beyaz);
    font-size: 16px;
    transition: var(--gecis);
}

.footer-social a:hover {
    background: var(--dekor-turuncu);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--dekor-turuncu);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--gecis);
}

.footer-links a i {
    font-size: 10px;
    color: var(--dekor-turuncu);
    transition: var(--gecis);
}

.footer-links a:hover {
    color: var(--dekor-turuncu);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(230, 126, 34, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dekor-turuncu);
    font-size: 16px;
}

.footer-contact-text h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-contact-text p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text a:hover {
    color: var(--dekor-turuncu);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-copyright a {
    color: var(--dekor-turuncu);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--dekor-turuncu);
}

@media (max-width: 1200px) {
    .hero-text h1,
    .hero-text h2 {
        font-size: 46px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dekor-beyaz);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--gecis);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-mobile-btn {
        display: inline-flex;
        margin-top: 20px;
        width: calc(100% - 40px);
        justify-content: center;
        color: var(--dekor-beyaz) !important;
    }
    
    .nav-mobile-btn i {
        color: var(--dekor-beyaz) !important;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 40px;
    }
    
    .hero-text p {
        margin: 0 auto 35px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        justify-content: space-between;
    }
    
    .topbar-left {
        flex-direction: row;
        gap: 0;
    }
    
    .topbar-left .topbar-item:not(:first-child) {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-tagline {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .tagline-line {
        width: 30px;
    }
    
    .tagline-text {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .hero-slider-nav {
        bottom: 25px;
    }
    
    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .hero-text h2 {
        font-size: 32px;
    }
    
    .hero-tagline {
        gap: 10px;
    }
    
    .tagline-line {
        width: 25px;
    }
    
    .tagline-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}


.about-section {
    padding: 100px 0;
    background: var(--dekor-gri);
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--golge-hover);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--golge);
}

.experience-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tag-line {
    width: 40px;
    height: 3px;
    background: var(--dekor-turuncu);
    border-radius: 2px;
}

.tag-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dekor-turuncu);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dekor-lacivert);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title span {
    color: var(--dekor-turuncu);
}

.about-desc {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--dekor-turuncu);
    font-size: 20px;
}

.about-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dekor-lacivert);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-experience {
        right: 20px;
        bottom: -20px;
    }
    
    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-wrapper img {
        height: 350px;
    }
    
    .about-experience {
        padding: 20px;
    }
    
    .experience-number {
        font-size: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}


.services-section {
    padding: 100px 0;
    background: var(--dekor-beyaz);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .section-tag {
    justify-content: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dekor-lacivert);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--dekor-turuncu);
}

.section-desc {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dekor-beyaz);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--gecis);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: var(--gecis);
}

.service-card:hover .service-image::after {
    opacity: 1;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px 30px 30px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 50px;
    height: 4px;
    background: var(--dekor-turuncu);
    border-radius: 2px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 12px;
    margin-top: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--dekor-gri-koyu);
    line-height: 1.7;
}

.services-more {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        border-radius: 12px;
    }
    
    .service-image {
        height: 140px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content::before {
        left: 15px;
        width: 30px;
        height: 3px;
    }
    
    .service-card h3 {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 12px;
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
}


.why-us-section {
    padding: 100px 0;
    position: relative;
    background: var(--dekor-lacivert);
    overflow: hidden;
    display: none;
}

.cta-section {
    padding: 60px 0;
    background: var(--dekor-lacivert);
    position: relative;
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 37, 47, 0.95);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dekor-beyaz);
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-content h2 span {
    color: var(--dekor-turuncu);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    padding: 16px 35px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-cta-primary:hover {
    background: var(--dekor-turuncu-koyu);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--dekor-beyaz);
    padding: 16px 35px;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
}

.btn-cta-secondary:hover {
    background: var(--dekor-beyaz);
    color: var(--dekor-lacivert);
    border-color: var(--dekor-beyaz);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.why-us-bg {
    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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(230,126,34,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.section-header.light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header.light .tag-text {
    color: var(--dekor-turuncu);
}

.section-header.light .tag-line {
    background: var(--dekor-turuncu);
}

.section-header.light .section-title {
    color: var(--dekor-beyaz);
}

.section-header.light .section-title span {
    color: var(--dekor-turuncu);
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--gecis);
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dekor-turuncu) 0%, var(--dekor-altin) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--dekor-beyaz);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--dekor-beyaz);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--gecis);
}

.why-feature:hover {
    background: rgba(255,255,255,0.08);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon i {
    font-size: 20px;
    color: var(--dekor-turuncu);
}

.why-feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dekor-beyaz);
    margin-bottom: 5px;
}

.why-feature-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .why-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 32px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
}


.gallery-section {
    padding: 100px 0;
    background: var(--dekor-gri);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 126, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--gecis);
}

.gallery-overlay i {
    font-size: 32px;
    color: var(--dekor-beyaz);
    transform: scale(0.5);
    transition: var(--gecis);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-more {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-overlay i {
        font-size: 24px;
    }
}


.faq-section {
    padding: 100px 0;
    background: var(--dekor-beyaz);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dekor-gri);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--gecis);
}

.faq-item:hover {
    box-shadow: var(--golge);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--gecis);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--dekor-lacivert);
}

.faq-question i {
    font-size: 14px;
    color: var(--dekor-turuncu);
    transition: var(--gecis);
}

.faq-item.active .faq-question {
    background: var(--dekor-turuncu);
}

.faq-item.active .faq-question span {
    color: var(--dekor-beyaz);
}

.faq-item.active .faq-question i {
    color: var(--dekor-beyaz);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 15px;
    color: var(--dekor-gri-koyu);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 15px;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 14px;
    }
}


.testimonials-section {
    padding: 100px 0;
    background: var(--dekor-gri);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--dekor-beyaz);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--dekor-gri-koyu);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dekor-lacivert);
    background: transparent;
    color: var(--dekor-lacivert);
    font-size: 16px;
    cursor: pointer;
    transition: var(--gecis);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--dekor-turuncu);
    border-color: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonials-nav {
        margin-top: 30px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
    }
}


.references-section {
    padding: 100px 0;
    background: var(--dekor-lacivert);
}

.references-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.references-section .section-header .section-tag {
    justify-content: center;
}

.references-section .tag-text {
    color: var(--dekor-turuncu);
}

.references-section .tag-line {
    background: var(--dekor-turuncu);
}

.references-section .section-title {
    color: var(--dekor-beyaz);
}

.references-section .section-title span {
    color: var(--dekor-turuncu);
}

.references-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.reference-logo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--gecis);
}

.reference-logo-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.logo-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    background: var(--dekor-beyaz);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-logo-info .reference-year {
    display: inline-block;
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reference-logo-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dekor-beyaz);
    margin-bottom: 8px;
}

.reference-logo-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reference-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--gecis);
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.08);
}

.reference-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.reference-card:hover .reference-image img {
    transform: scale(1.1);
}

.reference-content {
    padding: 25px;
}

.reference-content .reference-year {
    display: inline-block;
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reference-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dekor-beyaz);
    margin-bottom: 8px;
}

.reference-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 992px) {
    .references-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .references-section {
        padding: 60px 0;
    }
    
    .references-logos {
        gap: 15px;
    }
    
    .reference-logo-card {
        padding: 25px 20px;
    }
    
    .logo-circle {
        width: 90px;
        height: 90px;
        padding: 15px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reference-image {
        height: 140px;
    }
    
    .reference-content {
        padding: 15px;
    }
    
    .reference-content h3 {
        font-size: 14px;
    }
    
    .reference-content p {
        font-size: 12px;
    }
    
    .reference-content .reference-year {
        font-size: 11px;
        padding: 4px 10px;
    }
}


.page-hero {
    background: linear-gradient(135deg, var(--dekor-lacivert) 0%, var(--dekor-lacivert-acik) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dekor-beyaz);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--dekor-turuncu);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.breadcrumb span:last-child {
    color: var(--dekor-turuncu);
}

.breadcrumb i {
    font-size: 10px;
}

.about-detail-section {
    padding: 80px 0;
    background: var(--dekor-beyaz);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--dekor-turuncu);
    border-radius: 2px;
}

.about-detail-content p {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-section {
    padding: 80px 0;
    background: var(--dekor-gri);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--dekor-beyaz);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--gecis);
}

.about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-stat-item .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dekor-turuncu) 0%, var(--dekor-turuncu-koyu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-stat-item .stat-icon i {
    font-size: 32px;
    color: var(--dekor-beyaz);
}

.about-stat-item .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--dekor-lacivert);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-item .stat-label {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    font-weight: 600;
}

.about-values-section {
    padding: 100px 0;
    background: var(--dekor-beyaz);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--dekor-gri);
    border-radius: 20px;
    transition: var(--gecis);
}

.value-card:hover {
    background: var(--dekor-lacivert);
}

.value-card:hover h3,
.value-card:hover p {
    color: var(--dekor-beyaz);
}

.value-card:hover .value-icon {
    background: var(--dekor-turuncu);
}

.value-card:hover .value-icon i {
    color: var(--dekor-beyaz);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--dekor-beyaz);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--gecis);
}

.value-icon i {
    font-size: 32px;
    color: var(--dekor-turuncu);
    transition: var(--gecis);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 15px;
    transition: var(--gecis);
}

.value-card p {
    font-size: 15px;
    color: var(--dekor-gri-koyu);
    line-height: 1.7;
    transition: var(--gecis);
}

@media (max-width: 992px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 120px 0 50px;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .about-stat-item {
        padding: 25px 15px;
    }
    
    .about-stat-item .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-stat-item .stat-icon i {
        font-size: 24px;
    }
    
    .about-stat-item .stat-number {
        font-size: 32px;
    }
    
    .about-stat-item .stat-label {
        font-size: 13px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
}


.contact-section {
    padding: 100px 0;
    background: var(--dekor-beyaz);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info .section-tag .tag-text {
    color: var(--dekor-turuncu);
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dekor-lacivert);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-title span {
    color: var(--dekor-turuncu);
}

.contact-desc {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(230, 126, 34, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 24px;
    color: var(--dekor-turuncu);
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dekor-gri-koyu);
    margin-bottom: 5px;
}

.contact-info-text a,
.contact-info-text p {
    font-size: 17px;
    font-weight: 600;
    color: var(--dekor-lacivert);
}

.contact-info-text a:hover {
    color: var(--dekor-turuncu);
}

.contact-form-wrapper {
    background: var(--dekor-gri);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    color: var(--dekor-lacivert);
    transition: var(--gecis);
    background: var(--dekor-beyaz);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dekor-turuncu);
    background: var(--dekor-beyaz);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dekor-gri-koyu);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .contact-info-icon i {
        font-size: 20px;
    }
}


.services-page-section {
    padding: 80px 0;
    background: var(--dekor-gri);
}

.services-page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-page-intro p {
    font-size: 18px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-page-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--dekor-beyaz);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    align-items: center;
}

.service-page-card:nth-child(even) {
    direction: rtl;
}

.service-page-card:nth-child(even) > * {
    direction: ltr;
}

.service-page-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

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

.service-page-card:hover .service-page-image img {
    transform: scale(1.05);
}

.service-page-content {
    padding: 50px;
}

.service-page-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--dekor-turuncu);
    border-radius: 2px;
}

.service-page-content p {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-page-content ul {
    margin-bottom: 30px;
}

.service-page-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dekor-lacivert);
    margin-bottom: 12px;
}

.service-page-content ul li i {
    color: var(--dekor-turuncu);
    font-size: 14px;
}

@media (max-width: 992px) {
    .service-page-card {
        grid-template-columns: 1fr;
    }
    
    .service-page-card:nth-child(even) {
        direction: ltr;
    }
    
    .service-page-image {
        min-height: 300px;
    }
    
    .service-page-content {
        padding: 40px 30px;
    }
    
    .service-page-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .services-page-section {
        padding: 50px 0;
    }
    
    .services-page-intro p {
        font-size: 16px;
    }
    
    .service-page-image {
        min-height: 220px;
    }
    
    .service-page-content {
        padding: 30px 20px;
    }
    
    .service-page-content h2 {
        font-size: 22px;
    }
    
    .service-page-content p {
        font-size: 15px;
    }
}


.gallery-page {
    padding-top: 80px;
}

.gallery-page-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.map-section {
    padding: 0 0 80px;
    background: var(--dekor-beyaz);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}


.blog-section {
    padding: 80px 0;
    background: var(--dekor-gri);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--dekor-beyaz);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--gecis);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 13px;
    color: var(--dekor-gri-koyu);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--dekor-turuncu);
    font-size: 12px;
}

.blog-content h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-content h2 a {
    color: var(--dekor-lacivert);
}

.blog-content h2 a:hover {
    color: var(--dekor-turuncu);
}

.blog-content p {
    font-size: 15px;
    color: var(--dekor-gri-koyu);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dekor-turuncu);
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more i {
    font-size: 12px;
    transition: var(--gecis);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h2 {
        font-size: 18px;
    }
}


.legal-section {
    padding: 80px 0;
    background: var(--dekor-beyaz);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin: 35px 0 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dekor-lacivert);
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--dekor-gri-koyu);
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--dekor-turuncu);
    border-radius: 50%;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dekor-gri);
    font-style: italic;
    color: var(--dekor-gri-koyu);
}

@media (max-width: 576px) {
    .legal-section {
        padding: 50px 0;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content p,
    .legal-content ul li {
        font-size: 15px;
    }
}


/* ==========================================
   SERVICE DETAIL PAGE STYLES
   ========================================== */

.service-detail-section {
    padding: 80px 0;
    background: var(--dekor-beyaz);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--golge);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* ==========================================
   ARTICLE CONTENT - CKEditor Compatible
   Standart HTML etiketleri için stiller
   ========================================== */

.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--dekor-gri-koyu);
}

/* Başlıklar */
.article-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dekor-lacivert);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin: 45px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid var(--dekor-turuncu);
}

.article-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin: 30px 0 12px 0;
}

.article-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin: 25px 0 10px 0;
}

/* Paragraflar */
.article-content p {
    margin-bottom: 20px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* Kalın ve italik */
.article-content strong,
.article-content b {
    color: var(--dekor-lacivert);
    font-weight: 700;
}

.article-content em,
.article-content i:not(.fas):not(.fab):not(.far) {
    font-style: italic;
}

/* Linkler */
.article-content a {
    color: var(--dekor-turuncu);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--dekor-turuncu-koyu);
}

/* Sırasız Liste (ul) */
.article-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.article-content ul li {
    position: relative;
    padding: 12px 15px 12px 45px;
    margin-bottom: 10px;
    background: var(--dekor-gri);
    border-radius: 10px;
    color: var(--dekor-lacivert);
    font-weight: 500;
    transition: var(--gecis);
}

.article-content ul li:last-child {
    margin-bottom: 0;
}

.article-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dekor-turuncu);
    font-size: 14px;
}

.article-content ul li:hover {
    background: rgba(230, 126, 34, 0.1);
    padding-left: 50px;
}

/* Sıralı Liste (ol) */
.article-content ol {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    counter-reset: item;
}

.article-content ol li {
    position: relative;
    padding: 18px 20px 18px 70px;
    margin-bottom: 15px;
    background: var(--dekor-gri);
    border-radius: 12px;
    color: var(--dekor-lacivert);
    counter-increment: item;
    transition: var(--gecis);
}

.article-content ol li:last-child {
    margin-bottom: 0;
}

.article-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dekor-turuncu) 0%, var(--dekor-turuncu-koyu) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dekor-beyaz);
    font-weight: 700;
    font-size: 16px;
}

.article-content ol li:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

/* Blockquote */
.article-content blockquote {
    margin: 35px 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, var(--dekor-lacivert) 0%, var(--dekor-lacivert-acik) 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.article-content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 40px;
    color: rgba(230, 126, 34, 0.3);
}

.article-content blockquote p {
    color: var(--dekor-beyaz);
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Yatay Çizgi */
.article-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dekor-turuncu), transparent);
    margin: 40px 0;
}

/* Tablo */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.article-content table th {
    background: var(--dekor-lacivert);
    color: var(--dekor-beyaz);
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
}

.article-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--dekor-lacivert);
}

.article-content table tr:nth-child(even) {
    background: var(--dekor-gri);
}

.article-content table tr:hover td {
    background: rgba(230, 126, 34, 0.05);
}

/* Resimler */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: var(--golge);
}

.article-content figure {
    margin: 30px 0;
}

.article-content figcaption {
    text-align: center;
    font-size: 14px;
    color: var(--dekor-gri-koyu);
    margin-top: 10px;
    font-style: italic;
}

/* Video embed */
.article-content iframe {
    max-width: 100%;
    border-radius: 12px;
    margin: 25px 0;
}

/* Kod blokları */
.article-content code {
    background: var(--dekor-gri);
    padding: 3px 8px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    color: var(--dekor-turuncu-koyu);
}

.article-content pre {
    background: var(--dekor-lacivert);
    padding: 25px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 25px 0;
}

.article-content pre code {
    background: transparent;
    color: var(--dekor-beyaz);
    padding: 0;
}

/* Sidebar Styles */
.service-detail-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--dekor-lacivert) 0%, var(--dekor-lacivert-acik) 100%);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dekor-beyaz);
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--dekor-beyaz);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.sidebar-services {
    background: var(--dekor-gri);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.sidebar-services h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dekor-turuncu);
}

.sidebar-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li {
    margin-bottom: 10px;
}

.sidebar-services li:last-child {
    margin-bottom: 0;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--dekor-beyaz);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dekor-lacivert);
    transition: var(--gecis);
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    transform: translateX(5px);
}

.sidebar-services a i {
    color: var(--dekor-turuncu);
    font-size: 12px;
    transition: var(--gecis);
}

.sidebar-services a:hover i,
.sidebar-services a.active i {
    color: var(--dekor-beyaz);
}

.sidebar-contact {
    background: var(--dekor-gri);
    padding: 30px;
    border-radius: 20px;
}

.sidebar-contact h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dekor-lacivert);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dekor-turuncu);
}

.sidebar-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-contact .contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact .contact-item i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(230, 126, 34, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dekor-turuncu);
    font-size: 16px;
}

.sidebar-contact .contact-item span {
    display: block;
    font-size: 13px;
    color: var(--dekor-gri-koyu);
    margin-bottom: 3px;
}

.sidebar-contact .contact-item a,
.sidebar-contact .contact-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--dekor-lacivert);
    margin: 0;
}

.sidebar-contact .contact-item a:hover {
    color: var(--dekor-turuncu);
}

/* Service Detail Responsive */
@media (max-width: 1200px) {
    .service-detail-grid {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .sidebar-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 50px 0;
    }
    
    .service-detail-image img {
        height: 300px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
        margin: 35px 0 15px 0;
    }
    
    .article-content h4 {
        font-size: 17px;
    }
    
    .article-content blockquote {
        padding: 25px 20px;
    }
    
    .article-content blockquote::before {
        font-size: 30px;
        left: 15px;
    }
    
    .article-content blockquote p {
        font-size: 16px;
        padding-left: 30px;
    }
    
    .article-content ol li {
        padding: 15px 15px 15px 60px;
    }
    
    .article-content ol li::before {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .service-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-detail-image img {
        height: 220px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .article-content h2 {
        font-size: 22px;
    }
    
    .article-content h3 {
        font-size: 18px;
        margin: 30px 0 12px 0;
        padding-left: 12px;
    }
    
    .article-content h4 {
        font-size: 16px;
    }
    
    .article-content ul li,
    .article-content ol li {
        font-size: 14px;
    }
    
    .article-content blockquote {
        padding: 20px 15px;
    }
    
    .article-content blockquote p {
        font-size: 15px;
        padding-left: 25px;
    }
    
    .sidebar-cta,
    .sidebar-services,
    .sidebar-contact {
        padding: 25px 20px;
    }
}

/* Service Card Link Styles */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card-link .service-card {
    cursor: pointer;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-link:hover .service-card h3 {
    color: var(--dekor-turuncu);
}

.service-card-link .service-card p,
.service-card-link .service-card h3 {
    color: inherit;
}


/* Blog Card Link Styles */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-link .blog-card {
    height: 100%;
}

.blog-card-link:hover .blog-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-link:hover h2 {
    color: var(--dekor-turuncu);
}

.blog-card-link .blog-content h2,
.blog-card-link .blog-content p {
    color: inherit;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Custom Alert Styles */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateX(calc(100% + 40px));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 420px;
    min-width: 320px;
    background: #fff;
    pointer-events: auto;
    border-left: 5px solid;
}

.custom-alert.show {
    transform: translateX(0);
}

.custom-alert.success {
    border-left-color: #10b981;
}

.custom-alert.error {
    border-left-color: #ef4444;
}

.alert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-alert.success .alert-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.custom-alert.error .alert-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.alert-icon i {
    font-size: 24px;
}

.alert-content {
    flex: 1;
    padding-top: 5px;
}

.alert-content strong {
    display: block;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 5px;
}

.alert-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.custom-alert .alert-close {
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s;
    flex-shrink: 0;
}

.custom-alert .alert-close:hover {
    background: #e5e7eb;
    color: #374151;
}

@media (max-width: 480px) {
    .alert-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .custom-alert {
        min-width: auto;
        max-width: none;
        padding: 15px;
        gap: 12px;
    }
    
    .alert-icon {
        width: 40px;
        height: 40px;
    }
    
    .alert-icon i {
        font-size: 20px;
    }
    
    .alert-content strong {
        font-size: 14px;
    }
    
    .alert-content p {
        font-size: 13px;
    }
}


/* Contact Float Buttons */
.contact-float-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-float,
.phone-float {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #fff;
}

.whatsapp-float {
    background: #25D366;
}

.phone-float {
    background: var(--dekor-turuncu);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.phone-float:hover {
    background: var(--dekor-turuncu-koyu);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dekor-lacivert);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--dekor-lacivert);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .float-tooltip,
.phone-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

@media (max-width: 768px) {
    .contact-float-wrapper {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .float-tooltip {
        display: none;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 140px;
        right: 15px;
    }
}
/* ==========================================
   GALERİ SAYFALAMA (PAGINATION) STYLLERİ
   ========================================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    width: 100%;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 16px;
    border-radius: 12px;
    background-color: var(--dekor-beyaz);
    color: var(--dekor-lacivert);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--dekor-gri);
    transition: var(--gecis);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    gap: 8px;
}

.page-link:hover {
    background-color: var(--dekor-turuncu);
    border-color: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.2);
}

.page-item.active .page-link {
    background-color: var(--dekor-turuncu);
    color: var(--dekor-beyaz);
    border-color: var(--dekor-turuncu);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
    pointer-events: none;
}

.page-item.disabled .page-link {
    color: var(--dekor-gri-koyu);
    pointer-events: none;
    background-color: var(--dekor-gri);
    border-color: var(--dekor-gri);
    box-shadow: none;
}

.page-item.disabled .page-link.dots {
    background: transparent;
    border: none;
    font-size: 20px;
    letter-spacing: 2px;
}

@media (max-width: 576px) {
    .pagination-wrapper {
        margin-top: 40px;
    }
    .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }
    .pagination {
        gap: 6px;
    }
    .page-item:first-child .page-link,
    .page-item:last-child .page-link {
        font-size: 0; 
    }
    .page-item:first-child .page-link i,
    .page-item:last-child .page-link i {
        font-size: 14px;
    }
}


.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .video-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
