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

:root {
    --primary-emerald: #10B981;
    --accent-blue: #3B82F6;
    --white-bg: #ffffff;
    --dark-grey: #1c1d22; /* Koyu gri, siyah değil */
    --dark-card: #1c1d22;
    --text-light: #f8fafc;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light-gray: #94A3B8;
    --emerald-green: #10B981;
    --emerald-light: #34D399;
}

/* Global Headings Premium Styling */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Base Styles */
body {
    background-color: var(--white-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Utility Classes */
.text-accent { color: var(--primary-emerald); }
.text-blue { color: var(--accent-blue); }
.bg-accent { background-color: var(--primary-emerald); }
.bg-dark-card { background-color: var(--dark-card); }

.text-gradient {
    background: linear-gradient(135deg, var(--primary-emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.nav-link {
    color: #1e293b !important; /* Koyu antrasit/siyah */
    font-weight: 600;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-green) !important; /* Yeşil vurgu */
}

.navbar-brand {
    color: #1e293b !important;
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* Premium Floating Hero Media Wrapper (Desktop default) */
.hero-media-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Hero Slider */
.hero-slider, .hero-slider .carousel-inner, .hero-slider .carousel-item {
    height: calc(100vh - 80px) !important;
    width: 100% !important;
    overflow: hidden;
}

.hero-slider {
    margin-top: -80px;
    display: block;
    background: #ffffff; /* Crisp bright white */
}

.hero-slider .carousel-item {
    height: 100vh !important;
    width: 100% !important;
    position: relative;
    background: #ffffff;
}

/* Görsel Üzerine Çok Hafif Beyazımsı Aydınlık (Okunabilirlik İçin) */
.hero-slider .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Super clean, extremely bright premium background gradient (95% bright white) */
    background: radial-gradient(circle at 95% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 5% 90%, rgba(244, 63, 94, 0.05) 0%, transparent 45%),
                #ffffff;
    z-index: 1;
    pointer-events: none;
}

.hero-slider .hero-img {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 75% !important;
    width: auto !important;
    object-fit: contain !important;
    display: block;
    z-index: 3;
    mix-blend-mode: multiply; /* Blends pure white background perfectly */
    animation: hoverAbstract3D 8s infinite alternate ease-in-out;
}

.hero-slider .hero-img.hero-templatepreviewer-visual {
    object-fit: contain !important;
    mix-blend-mode: normal;
    animation: none !important;
}

.hero-slider .hero-media-wrapper.templatepreviewer-hero-media {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .hero-slider .carousel-item {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        align-items: center;
        column-gap: clamp(28px, 3vw, 56px);
        padding-inline: clamp(1rem, 3vw, 3.5rem);
        box-sizing: border-box;
    }

    .hero-slider .hero-media-wrapper.templatepreviewer-hero-media {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        grid-column: 1;
        grid-row: 1;
        z-index: 2;
        justify-self: stretch;
    }

    .hero-slider .hero-img.hero-templatepreviewer-visual {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: min(80vh, 100%);
    }

    .hero-slider .carousel-caption {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        max-width: min(600px, 100%);
        justify-self: start;
        align-self: center;
        z-index: 10;
    }
}

@media (min-width: 1200px) {
    .hero-slider .hero-img.hero-templatepreviewer-visual {
        max-height: min(82vh, 100%);
    }
}

@media (min-width: 1400px) {
    .hero-slider .hero-img.hero-templatepreviewer-visual {
        max-height: min(84vh, 100%);
    }
}

/* TemplatePreviewer hero: no legacy green leaf shape behind the image */
.hero-slider .hero-media-wrapper.templatepreviewer-hero-media .hero-brand-shape,
.hero-slider .hero-media-wrapper.templatepreviewer-hero-media::before,
.hero-slider .hero-media-wrapper.templatepreviewer-hero-media::after {
    display: none !important;
    content: none !important;
}

@keyframes hoverAbstract3D {
    0% {
        transform: translateY(-50%) translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) translateY(-25px) rotate(3deg);
    }
}

/* Premium Pointed Leaf Brand Shape Behind Model (Exactly like Xiomi) */
.hero-brand-shape {
    position: absolute;
    left: 4%;
    top: 50%;
    width: 480px;
    height: 480px;
    background: var(--emerald-green);
    border-radius: 50% 0% 50% 50%; /* Perfect pointed leaf/teardrop shape! */
    z-index: 2; /* Floats over the white background of the image and blends perfectly */
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: floatBrandShape 12s infinite alternate ease-in-out;
}

@keyframes floatBrandShape {
    0% {
        transform: translate(0, -50%) rotate(42deg) scale(0.96);
    }
    100% {
        transform: translate(15px, -52%) rotate(48deg) scale(1.02);
    }
}

/* Floating Sparkle Stars */
.floating-sparkle {
    position: absolute;
    color: var(--emerald-green);
    opacity: 0.6;
    pointer-events: none;
    animation: floatSparkle 4.5s infinite ease-in-out;
    z-index: 4;
}

.sparkle-1 {
    top: -25px;
    right: 18%;
    font-size: 1.8rem;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 5%;
    left: -45px;
    font-size: 1.3rem;
    animation-delay: 2.2s;
}

@keyframes floatSparkle {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translateY(-12px) rotate(18deg) scale(1.15);
        opacity: 0.85;
        color: var(--emerald-light);
    }
}

/* Green Pulsing dot next to Designer */
.green-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--emerald-green);
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.35);
        opacity: 0.65;
        box-shadow: 0 0 18px rgba(16, 185, 129, 0.9);
    }
}

.carousel-caption {
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    width: 90%;
    max-width: 600px; /* Shifted and constrained to 600px to completely clear the mockup */
    z-index: 10;
    padding: 0;
}

.carousel-caption .hey-there {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Hero Hand-Drawn Animated Floating Arrow */
.hero-arrow-wrapper {
    position: absolute;
    top: -55px;
    left: -70px;
    width: 80px;
    height: 50px;
    color: #6B7280;
    opacity: 0.85;
    pointer-events: none;
    animation: floatArrow 3.5s ease-in-out infinite;
    transform-origin: bottom right;
}

.hero-hand-arrow path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawArrow 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes floatArrow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-4px, -4px) rotate(-3deg);
    }
}

.carousel-caption .hey-there i {
    color: var(--emerald-green);
}

.carousel-caption h1 {
    color: var(--text-dark);
    font-size: 4.2rem; /* Adjusted so it fits beautifully inside 600px block */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-transform: none;
    letter-spacing: -3px;
    text-shadow: none;
}

.carousel-caption .web-designer {
    font-size: 4.2rem; /* Adjusted to match h1 */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.carousel-caption .web-designer .web {
    color: #6B7280; /* Biraz daha koyu gri, okunabilirlik için */
}

.carousel-caption .web-designer .designer {
    color: var(--text-dark);
}

.carousel-caption p {
    color: #4B5563; /* Daha net bir gri */
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: none;
    margin-bottom: 2.5rem;
}

/* Buttons (Görseldeki Stil) */
.btn-cv {
    background-color: var(--emerald-green);
    color: #fff !important;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cv:hover {
    background-color: var(--emerald-light);
    transform: translateY(-3px);
}

.btn-reel {
    background-color: transparent;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.play-icon {
    width: 55px;
    height: 55px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981 !important; /* Doğrudan yeşil renk */
    font-size: 1.5rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.play-icon i {
    color: #10B981 !important;
}

.btn-reel:hover .play-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-accent {
    background: var(--primary-emerald) !important;
    color: #fff !important;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.3);
    background: var(--emerald-light) !important;
    opacity: 1 !important;
}

.btn-outline-dark {
    border: 1px solid #1e293b !important;
    color: #1e293b !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #1e293b !important;
    color: #ffffff !important;
}

/* About Section - Light Watercolor Theme */
/* Marquee Ticker Section */
.marquee-section {
    background-color: var(--dark-grey);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration, 25s) linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(4rem, 7vw, 7rem);
}

.marquee-item {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    position: relative;
    z-index: 1;
    gap: 15px;
    letter-spacing: 1px;
    text-decoration: none;
}

.marquee-item:hover,
.marquee-item:focus-visible {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.92;
}

.marquee-item .bi {
    color: var(--emerald-green);
    font-size: 2.2rem;
}

.marquee-brand-item {
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    max-width: none;
    overflow: visible;
    text-decoration: none;
}

.marquee-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    position: static;
    width: 78px;
    height: 48px;
    padding: 7px 9px;
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(241, 245, 249, 0.94), rgba(203, 213, 225, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.marquee-brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    position: static;
    filter:
        drop-shadow(0 1px 1px rgba(15, 23, 42, 0.28))
        drop-shadow(0 0 1px rgba(15, 23, 42, 0.42));
}

.marquee-brand-name {
    display: inline-block;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1;
    overflow: visible;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section - Premium Dynamic Theme */
.about-section {
    position: relative;
    background: #ffffff;
    background: radial-gradient(circle at 10% 20%, rgba(0, 217, 132, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 40%);
    color: var(--text-dark) !important;
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section h2, .about-section h5, .about-section strong, .about-section h3 {
    color: var(--text-dark) !important;
}

.about-section p, .about-section small {
    color: var(--text-gray) !important;
    opacity: 1 !important;
}

/* Wrapper for the right-side mockup */
.about-mockup-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.about-mockup-wrapper .main-mockup {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
}

.about-mockup-wrapper:hover .main-mockup {
    transform: translateY(-10px) rotate(1deg);
}

/* Floating Badge styling */
.floating-badge {
    z-index: 5;
    min-width: 170px;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.badge-figma {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.badge-code {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.floating-badge:hover {
    transform: scale(1.08) translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Stat Box Premium Design */
.stat-box {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-box:hover {
    background: #ffffff;
    border-color: var(--emerald-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.06);
}


/* Service Section */
.services-section {
    background-color: var(--dark-grey);
    color: #ffffff;
    padding: 80px 0 !important; /* Bir tık küçültüldü */
}

.services-section h2 {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03); /* Çok hafif belirginlik */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--emerald-green);
}

.service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6B7280;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-green);
    font-size: 1.2rem;
    transition: 0.3s;
}

.service-card:hover .service-arrow {
    background-color: var(--emerald-green);
    color: #fff;
    border-color: var(--emerald-green);
}

.service-card p {
    color: #9CA3AF !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #ffffff; /* Temiz beyaz arka plan */
}

.portfolio-card-new {
    transition: 0.4s;
}

.portfolio-img-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #f8fafc;
}

.portfolio-img-wrapper img {
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.portfolio-card-new:hover .portfolio-img-wrapper img {
    transform: scale(1.05);
}

.portfolio-link-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
}

.portfolio-card-new:hover .portfolio-link-btn {
    background-color: var(--emerald-green);
    color: #fff;
    border-color: var(--emerald-green);
}

/* Experience Section */
.experience-section {
    background-color: var(--dark-grey);
}

.experience-row {
    transition: 0.3s;
}

.experience-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 15px;
    padding-right: 15px;
}

.skills-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
}

/* Awards Section */
.awards-section {
    background-color: #ffffff;
}

.award-card {
    transition: 0.3s;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--emerald-green) !important;
}

/* Pricing Section */
.pricing-section {
    background-color: #f8fafc; /* Hafif gri-beyaz arka plan */
}

.pricing-card {
    transition: 0.4s;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--emerald-green) !important;
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--dark-grey);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-grey);
    overflow: hidden;
}

.rating-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stack-container {
    position: relative;
    height: 320px; /* Daha da küçük yükseklik */
    max-width: 480px; /* Daha da küçük genişlik */
    margin: 0 auto;
}

.testimonial-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.t-card {
    position: absolute;
    width: 100%;
    background: #1c1d22;
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 20px;
    padding: 20px; /* Daha da az padding */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Stack Positions */
.t-card.active {
    z-index: 3;
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

.t-card.next {
    z-index: 2;
    transform: translate(15px, 12px) scale(0.96);
    opacity: 0.7;
}

.t-card.far {
    z-index: 1;
    transform: translate(30px, 24px) scale(0.92);
    opacity: 0.4;
}

.t-card p {
    color: #ffffff !important; /* Tam beyaz */
    opacity: 1 !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.t-card h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.t-card small {
    color: var(--emerald-green) !important; /* Ünvanları daha belirgin yapalım */
    font-weight: 600;
    opacity: 1 !important;
}

/* Animation for sliding out */
.t-card.exit {
    transform: translate(-150%, -20%) scale(0.8) rotate(-15deg);
    opacity: 0;
}

.next-indicator {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-green);
    transition: 0.3s;
}

.t-card:hover .next-indicator {
    background: var(--emerald-green);
    color: #fff;
}

.testimonial-pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.testimonial-pagination .dot.active {
    background: var(--emerald-green);
    width: 30px;
    border-radius: 10px;
}

/* Blog Section */
.blog-section {
    background-color: #ffffff;
}

.blog-section .container {
    max-width: 1300px; /* Biraz daha geniş alan */
}

.blog-card {
    transition: 0.3s;
    border-radius: 24px !important;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--emerald-green) !important;
}

.blog-img-wrapper {
    height: 220px; /* Sabit 220px görsel yüksekliği */
    overflow: hidden;
    position: relative;
}

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

/* Compact Typography with line clamping */
.blog-card-title {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
    font-weight: 700;
    color: var(--dark-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4em; /* Ensures perfect baseline alignment for all cards */
    margin-bottom: 0.75rem !important;
}

.blog-card-excerpt {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em; /* Ensures perfect baseline alignment for descriptions */
    margin-bottom: 0 !important;
}

/* Responsive Image Heights */
@media (max-width: 991px) {
    .blog-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .blog-img-wrapper {
        height: 180px;
    }
    .blog-card-title {
        height: auto;
    }
    .blog-card-excerpt {
        height: auto;
    }
}

.blog-link-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Biraz daha büyük buton */
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--dark-grey);
    text-decoration: none;
    transition: 0.3s;
}

.blog-card:hover .blog-link-circle {
    background-color: var(--emerald-green);
    border-color: var(--emerald-green);
    color: #ffffff;
}

/* Inner Hero Section */
.inner-hero-section {
    height: 260px;
    background-image: url('../assets/about-hero.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px; /* Header overlap offset */
}

/* Story Section */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-section .d-inline-flex.rounded-pill {
    background-color: rgba(16, 185, 129, 0.06) !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    padding: 6px 16px !important;
}

.story-section .d-inline-flex.rounded-pill small {
    color: var(--primary-emerald) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.about-page-content .story-section .about-story-stats {
    margin-bottom: 2rem !important;
}

.about-page-content .experience-section {
    padding-bottom: 4.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .about-page-content .experience-section {
        padding-bottom: 6rem;
        margin-bottom: 5rem;
    }
}

.story-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%2300ff80" fill-opacity="0.3"/></svg>'); /* Dot pattern placeholder */
    z-index: -1;
}

.stat-item h3 {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
    font-size: 3rem !important;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-item small {
    font-size: 0.85rem;
    color: var(--text-gray) !important;
    font-weight: 700;
}

/* Footer */
.footer-section {
    background-color: var(--dark-grey) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--emerald-green);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links a {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

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

/* Animations */
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");

/* Responsive & Mobile Enhancements */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Global mobile-first styling tweaks */
@media (max-width: 768px) {
    h2, .display-4 {
        font-size: 2rem !important;
        letter-spacing: -1px !important;
        line-height: 1.25 !important;
    }
    
    h3, .display-5 {
        font-size: 1.5rem !important;
        letter-spacing: -0.5px !important;
    }
    
    h4 {
        font-size: 1.25rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .portfolio-details-hero h1,
    .blog-details-hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
    }

    /* Hero Slider Responsive Flow */
    .hero-slider,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: auto !important;
        min-height: calc(100vh - 80px) !important;
    }

    .carousel-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 40px 15px 40px 15px !important;
        background: #ffffff !important;
    }

    /* Hero Media Wrapper (Image & Teardrop Leaf Shape) */
    .hero-media-wrapper {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: 270px !important;
        margin: 20px auto 30px auto !important;
        z-index: 2 !important;
        pointer-events: none;
        overflow: visible !important;
    }

    .hero-media-wrapper.templatepreviewer-hero-media {
        height: 300px !important;
        max-width: 100% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-img.hero-templatepreviewer-visual {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        mix-blend-mode: normal !important;
        animation: none !important;
    }

    .hero-img {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        height: 260px !important;
        width: auto !important;
        z-index: 3 !important;
        mix-blend-mode: multiply !important;
        object-fit: contain !important;
        transform: translate(-50%, -50%) !important;
        animation: hoverAbstract3DMobile 6s infinite alternate ease-in-out !important;
    }

    .hero-brand-shape {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        width: 230px !important;
        height: 230px !important;
        z-index: 1 !important;
        mix-blend-mode: multiply !important;
        border-radius: 50% 0% 50% 50% !important;
        transform: translate(-50%, -50%) rotate(42deg) !important;
        animation: floatBrandShapeMobile 8s infinite alternate ease-in-out !important;
    }

    .hero-arrow-wrapper {
        display: none !important;
    }

    .carousel-caption {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        z-index: 10 !important;
    }

    .carousel-caption h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1.5px !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }

    .carousel-caption .web-designer {
        font-size: 2.2rem !important;
        letter-spacing: -1.5px !important;
        min-height: auto !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    .carousel-caption p {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
    }

    /* Buttons responsive stack */
    .carousel-caption .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 290px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .btn-cv, .btn-reel {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .btn-reel {
        padding: 0.5rem 1rem !important;
    }

    /* About Section Mockups & Badges */
    .about-mockup-wrapper {
        margin-top: 3rem;
    }
    
    .floating-badge {
        min-width: 140px !important;
        padding: 0.5rem 0.8rem !important;
    }

    .floating-badge strong {
        font-size: 0.75rem !important;
    }

    .floating-badge small {
        font-size: 0.6rem !important;
    }

    .badge-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    
    .badge-figma {
        left: 0 !important;
        top: 2% !important;
    }
    
    .badge-code {
        right: 0 !important;
        bottom: 2% !important;
    }

    /* Services Card responsive */
    .service-card {
        text-align: center !important;
    }

    .service-card .row {
        flex-direction: column;
        gap: 12px;
    }

    .service-card .col-md-2 {
        text-align: center !important;
        margin-top: 10px;
    }

    .service-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-title-wrap {
        margin-bottom: 10px;
    }

    .badge-1,
    .badge-2 {
        position: static;
        margin-top: 10px;
        display: inline-block;
    }

    /* Marquee Mobile Optimizations */
    .marquee-section {
        padding: 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .marquee-content {
        gap: 2.5rem !important;
    }
    
    .marquee-item {
        font-size: 1.1rem !important;
        margin-right: 0 !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        min-width: max-content !important;
    }
    
    .marquee-item .bi {
        font-size: 1.3rem !important;
    }

    .marquee-brand-item {
        gap: 1.25rem !important;
        flex-shrink: 0 !important;
        min-width: max-content !important;
    }

    .marquee-brand-logo-wrap {
        width: 62px;
        height: 38px;
        padding: 6px 7px;
        border-radius: 6px;
    }

    .marquee-brand-logo {
        width: 100%;
        height: 100%;
    }

    /* Pricing card mobile scale fix */
    .pricing-card.featured {
        transform: none !important;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Elegant Navbar Collapse Card for Mobile Devices */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1.2rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin-top: 0.8rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    .nav-item {
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .nav-item:last-child {
        margin-bottom: 1rem;
    }
    
    .navbar-collapse .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Floating WhatsApp Action Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-float i {
    line-height: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Premium Mobile Keyframe Animations */
@keyframes hoverAbstract3DMobile {
    0% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(3deg);
    }
}

@keyframes floatBrandShapeMobile {
    0% {
        transform: translate(-50%, -50%) rotate(42deg) scale(0.95);
    }
    100% {
        transform: translate(-50%, -50%) rotate(48deg) scale(1.05);
    }
}

/* Portfolio & Blog Details Premium Page Styles */
.portfolio-details-hero,
.blog-details-hero {
    height: 280px;
    background-image: url('../assets/details-hero.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-details-hero h1,
.blog-details-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

@keyframes float-stars {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-sparkle {
    animation: float-stars 4s ease-in-out infinite;
}

.portfolio-showcase {
    overflow: hidden;
}

.portfolio-showcase-panel {
    background-color: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-showcase-image {
    max-height: 420px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.portfolio-details-sparkle {
    right: 15%;
    top: 30%;
}

.portfolio-details-sparkle-icon {
    font-size: 3rem;
    color: var(--emerald-light);
}

.portfolio-case-study-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.portfolio-case-study-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

.portfolio-meta-card-title {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.portfolio-meta-card {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.portfolio-contact-widget {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.08) !important;
}

.portfolio-contact-widget-icon {
    width: 38px;
    height: 38px;
}

.portfolio-contact-widget-title {
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.mockup-hover {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.mockup-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.social-circle-btn:hover {
    background-color: var(--primary-emerald);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.2);
}

.hover-scale {
    transition: transform 0.3s ease, color 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
    color: var(--emerald-light) !important;
}

/* Pulsing Decorative Dot */
.pulse-dot-wrapper {
    position: absolute;
    bottom: 12%;
    right: 6%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-emerald);
    border-radius: 50%;
    z-index: 2;
}

.pulse-ring {
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    height: 24px;
    width: 24px;
    position: absolute;
    animation: pulsate 1.8s ease-out infinite;
    z-index: 1;
}

@keyframes pulsate {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Sidebar Widgets & Comments Styles for Blog */
.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}
.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.search-form .form-control {
    border-radius: 2rem 0 0 2rem;
    border-right: none;
    padding-left: 1.5rem;
}
.search-form .btn {
    border-radius: 0 2rem 2rem 0;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    background-color: #212529;
    color: white;
}
.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s;
}
.category-list a:hover {
    border-color: #00d984;
    color: #00d984;
    box-shadow: 0 4px 15px rgba(0,217,132,0.1);
}
.category-list a span {
    color: #6c757d;
    font-weight: 400;
}
.recent-post-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    object-fit: cover;
}
.tag-cloud a {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: white;
    color: #6c757d;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.8rem;
    margin-right: 0.4rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.tag-cloud a:hover {
    border-color: #00d984;
    color: #00d984;
}
.comment-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comment-item:last-child {
    border-bottom: none;
}
.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details-sparkle {
    right: 15%;
    top: 30%;
}

.blog-details-sparkle-icon {
    font-size: 3rem;
    color: var(--emerald-light);
}

.blog-detail-cover {
    max-height: 480px;
    object-fit: cover;
}

.blog-detail-meta {
    font-size: 0.95rem;
}

.blog-details-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-card-category-badge {
    font-size: 0.7rem;
}

.recent-post-title {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ==========================================================================
   Premium Creative Agency Enhancements (3D Tilt, Fluid Blobs)
   ========================================================================== */

/* 3D Tilt Card Base */
.portfolio-card-new, 
.award-card, 
.service-timeline-item, 
.pricing-card-hover {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease, border-color 0.3s ease;
}

/* Premium Watercolor Blobs Background */
.watercolor-blobs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.1;
}
.watercolor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    mix-blend-mode: multiply;
    animation: fluidBlob 25s infinite alternate ease-in-out;
}
.blob-green {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.55) 0%, rgba(52, 211, 153, 0) 70%);
}
.blob-blue {
    bottom: 15%;
    right: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(96, 165, 250, 0) 70%);
    animation-delay: -5s;
    animation-duration: 32s;
}
.blob-purple {
    top: 45%;
    left: 45%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(167, 139, 250, 0) 70%);
    animation-delay: -10s;
    animation-duration: 24s;
}

@keyframes fluidBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    33% {
        transform: translate(60px, -60px) scale(1.15) rotate(120deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    66% {
        transform: translate(-40px, 50px) scale(0.9) rotate(240deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

/* Premium Staggered Scroll Reveal Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}
.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Methodology Steps Premium Design */
.methodology-section {
    background: #ffffff;
}

.step-card {
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-emerald) !important;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08) !important;
}

.step-num {
    opacity: 0.15;
    font-size: 2.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.step-card:hover .step-num {
    opacity: 0.85;
}

.step-icon-wrapper i {
    transition: all 0.3s ease;
    display: inline-block;
}

.step-card:hover .step-icon-wrapper i {
    transform: scale(1.15);
}

/* Scroll Reveal: Yukarıdan Aşağıya Süzülme Animasyonu */
.reveal-item-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-item-down.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Services Overview & Service Detail Pages */

.page-hero,
.services-hero {
    height: auto;
    min-height: 0;
    padding: calc(80px + 2.75rem) 0 2.25rem;
}

.page-hero-inner,
.services-hero-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-title,
.services-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.page-hero .hero-lead,
.services-hero .hero-lead {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.page-hero-breadcrumb,
.services-hero-breadcrumb {
    margin-top: 1.375rem;
}

.page-hero-breadcrumb .breadcrumb,
.services-hero-breadcrumb .breadcrumb {
    font-size: 0.875rem;
    justify-content: center;
}

.inner-hero-section .hero-lead {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-overview-section {
    background-color: var(--white-bg);
    padding-bottom: 3rem;
}

.services-intro {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 2.75rem;
    padding-top: 2.5rem;
}

.services-intro-title {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1.875rem, 2.8vw, 2.75rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.services-intro-text {
    max-width: 740px;
    margin: 1.25rem auto 0;
    color: var(--text-gray);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.service-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-showcase-card {
    background-color: var(--white-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-showcase-card:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.06);
}

.service-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 2rem;
}

.service-showcase-card:nth-child(even) .service-showcase-media {
    order: 2;
}

.service-showcase-card:nth-child(even) .service-showcase-content {
    order: 1;
}

.service-showcase-media {
    border-radius: 0.875rem;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 340px;
    height: 100%;
}

.service-showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.service-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 340px;
    padding: 0.25rem 0;
}

.service-showcase-badge {
    font-size: 0.7rem;
    align-self: flex-start;
}

.service-showcase-title {
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-emerald);
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-detail-link:hover {
    color: var(--primary-emerald);
    gap: 0.75rem;
}

.service-details-hero {
    height: auto;
    min-height: 0;
    padding: calc(80px + 2.75rem) 0 2.25rem;
    background-image: url('../assets/details-hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.service-details-hero-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.service-details-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    text-align: center;
}

.service-details-hero .hero-lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    text-align: center;
}

.service-details-hero .breadcrumb {
    justify-content: center;
    margin-top: 1.375rem;
}

.service-detail-section {
    background-color: var(--white-bg);
}

.service-detail-media {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-detail-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

.service-content h2,
.portfolio-rich-text h2,
.blog-rich-text h2,
.service-content h3,
.portfolio-rich-text h3,
.blog-rich-text h3,
.service-content h4,
.portfolio-rich-text h4,
.blog-rich-text h4 {
    color: var(--dark-text, #1a1a1a);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content h2,
.portfolio-rich-text h2,
.blog-rich-text h2 {
    font-size: 1.75rem;
}

.service-content h3,
.portfolio-rich-text h3,
.blog-rich-text h3 {
    font-size: 1.375rem;
}

.service-content p,
.portfolio-rich-text p,
.blog-rich-text p {
    margin-bottom: 1rem;
}

.service-content p:last-child,
.portfolio-rich-text p:last-child,
.blog-rich-text p:last-child {
    margin-bottom: 0;
}

.service-content ul,
.portfolio-rich-text ul,
.blog-rich-text ul,
.service-content ol,
.portfolio-rich-text ol,
.blog-rich-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.service-content blockquote,
.portfolio-rich-text blockquote,
.blog-rich-text blockquote {
    border-left: 3px solid rgba(16, 185, 129, 0.45);
    margin: 1rem 0;
    padding: 0.5rem 0 0.5rem 1rem;
    color: rgba(33, 37, 41, 0.75);
}

.service-content a,
.portfolio-rich-text a,
.blog-rich-text a {
    color: var(--accent-color, #10b981);
    text-decoration: underline;
}

.service-content a:hover,
.portfolio-rich-text a:hover,
.blog-rich-text a:hover {
    opacity: 0.85;
}

.blog-rich-text img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-block: 1.5rem;
    border-radius: 1rem;
}

.blog-content-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.blog-content-gallery__item {
    margin: 0;
}

.blog-content-gallery img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    margin-block: 0;
}

@media (max-width: 768px) {
    .blog-content-gallery {
        grid-template-columns: 1fr;
    }
}

.blog-rich-text figure {
    margin: 1.5rem 0;
}

.blog-rich-text figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(33, 37, 41, 0.65);
    text-align: center;
}

.service-benefit-card {
    background-color: var(--white-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 185, 129, 0.08);
}

.service-benefit-card .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-emerald);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-gallery {
    background-color: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
    padding: 1.5rem;
}

.service-gallery img {
    width: 100%;
    border-radius: 0.875rem;
    object-fit: cover;
    height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-quote-block {
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.service-quote-block .quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-emerald);
    opacity: 0.1;
    line-height: 1;
}

.service-quote-block .quote-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-quote-block .quote-author img {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.related-services-section {
    background-color: #f8fafc;
}

.related-service-card {
    display: block;
    background-color: var(--white-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.1);
    color: inherit;
}

.related-service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-service-card .card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.related-service-card h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.related-service-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-cta-panel {
    background-color: var(--dark-card);
    border-radius: 1.25rem;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-panel h2 {
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.service-cta-panel p {
    color: rgba(248, 250, 252, 0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.service-cta-panel .btn-accent {
    background-color: var(--primary-emerald);
    border-color: var(--primary-emerald);
    color: #fff;
    padding: 0.875rem 2rem;
    font-weight: 700;
}

.service-cta-panel .btn-accent:hover {
    background-color: var(--emerald-light);
    border-color: var(--emerald-light);
    color: #fff;
}

.service-process-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-process-item:last-child {
    margin-bottom: 0;
}

.service-process-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--dark-card);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.65rem;
}

@media (max-width: 991.98px) {
    .page-hero,
    .services-hero {
        padding: calc(80px + 2rem) 0 1.75rem;
    }

    .service-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-showcase-card:nth-child(even) .service-showcase-media,
    .service-showcase-card:nth-child(even) .service-showcase-content {
        order: unset;
    }

    .service-showcase-media {
        order: -1;
    }

    .service-showcase-card {
        padding: 1.5rem;
    }

    .service-showcase-media,
    .service-showcase-media img,
    .service-showcase-content {
        min-height: 280px;
    }

    .services-intro {
        padding-top: 2rem;
        margin-bottom: 2.25rem;
    }

    .service-cta-panel {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero,
    .services-hero {
        padding: calc(80px + 1.5rem) 0 1.5rem;
    }

    .page-hero-title,
    .services-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .services-intro {
        padding-top: 1.75rem;
        margin-bottom: 2rem;
    }

    .services-intro-title {
        font-size: clamp(1.875rem, 6vw, 2.125rem);
    }

    .services-intro-text {
        font-size: 1rem;
    }

    .service-showcase-list {
        gap: 1.5rem;
    }

    .service-showcase-grid {
        grid-template-columns: 1fr;
    }

    .service-showcase-media,
    .service-showcase-media img {
        min-height: 240px;
    }

    .service-showcase-content {
        min-height: auto;
    }

    .service-details-hero {
        padding-top: calc(80px + 2rem);
        padding-bottom: 2rem;
    }

    .service-gallery img {
        height: 200px;
    }

    .related-service-card img {
        height: 160px;
    }

    .service-cta-panel {
        padding: 2rem 1.25rem;
    }

    .service-cta-panel h2 {
        font-size: 1.75rem;
    }
}

/* Contact page (parity with agencesite/contact.html) */
.contact-page-section .contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #212529;
    flex-shrink: 0;
}

.contact-page-section .social-links a {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.contact-page-section .social-links a:hover {
    background-color: #00d984;
    color: #fff;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    height: 500px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991.98px) {
    .map-container {
        height: 400px;
    }
}

/* Contact page testimonials slider */
.contact-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.contact-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.contact-slider-item {
    flex: 0 0 600px;
    max-width: 85vw;
}

.testimonial-slider-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    background-color: #fff;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-slider-card.active {
    border-color: #00d984;
    box-shadow: 0 10px 30px rgba(0, 217, 132, 0.05);
}

.quote-icon-large {
    font-size: 3rem;
    color: #00d984;
    line-height: 1;
}

.star-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.contact-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #00d984;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-testimonial-dot-inner {
    width: 4px;
    height: 4px;
    background-color: #00d984;
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .contact-slider-item {
        flex: 0 0 80vw;
    }
}

@media (max-width: 767.98px) {
    .contact-slider-item {
        flex: 0 0 100%;
    }
}

.templatepreviewer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.templatepreviewer-logo-icon,
.site-header-logo,
.header-logo-img,
.site-logo-img {
    height: clamp(52px, 4.5vw, 72px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.templatepreviewer-wordmark {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    white-space: nowrap;
    background: linear-gradient(90deg, #14d9a6 0%, #2dd4bf 38%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-templatepreviewer-visual {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.home-phone-visual,
.about-preview-visual {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .templatepreviewer-brand {
        gap: 9px;
    }

    .templatepreviewer-logo-icon,
    .site-header-logo,
    .header-logo-img,
    .site-logo-img {
        height: 44px;
        max-width: 140px;
    }

    .templatepreviewer-wordmark {
        font-size: 1.15rem;
    }

    .hero-templatepreviewer-visual {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .templatepreviewer-logo-icon,
    .site-header-logo,
    .header-logo-img,
    .site-logo-img {
        height: 40px;
        max-width: 128px;
    }
}
