/* Sole Temizlik - Custom Styles */

:root {
    --primary-color: #0f3552;
    --primary-deep: #08263e;
    --secondary-color: #19a7b8;
    --secondary-strong: #12889b;
    --accent-color: #e8f7f9;
    --surface-color: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --text-color: #173042;
    --light-text: #5f7484;
    --white: #ffffff;
    --bg-light: #f4f8fb;
    --bg-soft: #eef5f8;
    --border-color: rgba(15, 53, 82, 0.08);
    --shadow-soft: 0 24px 60px rgba(12, 36, 56, 0.08);
    --shadow-card: 0 20px 45px rgba(10, 34, 52, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
    --transition: all 0.28s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(25, 167, 184, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fbfd 0%, #f2f7fa 38%, #ffffff 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 53, 82, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 53, 82, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

p,
li {
    color: var(--light-text);
}

a {
    transition: var(--transition);
}

.text-muted {
    color: var(--light-text) !important;
}

.text-info,
.text-secondary {
    color: var(--secondary-strong) !important;
}

.bg-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(232, 247, 249, 0.5)) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), #184d72) !important;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.9rem 1.45rem;
}

.btn-primary,
.btn-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    border: none;
    box-shadow: 0 16px 34px rgba(15, 53, 82, 0.18);
}

.btn-primary:hover,
.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(15, 53, 82, 0.24);
}

.btn-outline-light {
    border-width: 1.5px;
    backdrop-filter: blur(10px);
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    transition: var(--transition);
    padding: 18px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 18px 40px rgba(8, 28, 44, 0.08);
    background: rgba(255, 255, 255, 0.88);
}

.navbar-brand img {
    height: 82px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 74px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin: 0 10px;
    padding: 0.55rem 0.15rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Hero Slider */
.hero-slider {
    margin-top: 118px;
}

.hero-slider .carousel-inner {
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 836px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(6, 26, 43, 0.88) 12%, rgba(8, 38, 62, 0.68) 45%, rgba(8, 38, 62, 0.2) 100%),
        radial-gradient(circle at 80% 20%, rgba(25, 167, 184, 0.35), transparent 28%);
}

.hero-slider .carousel-caption {
    text-align: left;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    right: 8%;
    z-index: 10;
}

.hero-slider .container {
    max-width: 760px;
    margin-left: 0;
}

.hero-slider h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    color: var(--white);
    margin-bottom: 22px;
    animation: fadeInUp 1s both;
}

.hero-slider p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 620px;
    animation: fadeInUp 1s both 0.25s;
}

.hero-slider .btn-group-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 1s both 0.45s;
}

.hero-slider .btn-group-custom .btn-lg {
    padding: 1rem 1.75rem;
}

.hero-slider .carousel-indicators {
    display: none;
}

.hero-slider .carousel-indicators button {
    width: 38px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background-color: rgba(255, 255, 255, 0.32);
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    background-size: 42%;
}

/* Landing Sections */
.section-about,
.section-services,
.section-why,
.section-stats {
    position: relative;
}

.section-about {
    padding-top: 6.5rem !important;
}

.section-about img {
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.section-services {
    margin-top: 2rem;
    padding: 6rem 0 !important;
}

.section-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(232, 247, 249, 0.5), rgba(255, 255, 255, 0.75));
    z-index: 0;
}

.section-services .container,
.section-why .container,
.section-stats .container {
    position: relative;
    z-index: 1;
}

.section-why {
    padding: 6rem 0 !important;
}

.section-stats {
    margin: 2rem 0 0;
    padding: 5.5rem 0 !important;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(135deg, var(--primary-color), #123f61 55%, #176980 100%);
}

/* Feature Boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-top: -92px;
    position: relative;
    z-index: 20;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 167, 184, 0.08), transparent 55%);
    opacity: 0;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(10, 34, 52, 0.14);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box h5 {
    margin-bottom: 0;
    position: relative;
}

.feature-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 1.85rem;
    color: var(--secondary-strong);
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(25, 167, 184, 0.12), rgba(15, 53, 82, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Service Cards Modernized */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(15, 53, 82, 0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(10, 34, 52, 0.12);
    border-color: var(--secondary-color);
}

.service-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
}

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

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 38, 62, 0.4) 100%);
}

.service-content {
    padding: 35px 30px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.service-content h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-card:hover h4 {
    color: var(--secondary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Why / Sectors */
.section-why .d-flex.align-items-start {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border-color);
    box-shadow: 0 14px 28px rgba(8, 28, 44, 0.05);
    height: 100%;
}

.section-why .bg-primary {
    border-radius: 32px !important;
    box-shadow: 0 28px 60px rgba(10, 34, 52, 0.16);
    position: relative;
    overflow: hidden;
}

.section-why .bg-primary::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.section-why .bg-primary li {
    color: rgba(255, 255, 255, 0.84);
}

/* Stats */
.section-stats h2,
.section-stats p {
    color: var(--white);
    position: relative;
}

.section-stats .col-md-3 {
    position: relative;
}

.section-stats .col-md-3::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.14);
}

.section-stats .col-md-3:last-child::after {
    display: none;
}

.section-stats .display-4 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, var(--primary-deep), var(--primary-color) 52%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 90px 0;
    border-radius: 34px;
    margin: 70px 0;
    box-shadow: 0 32px 70px rgba(10, 34, 52, 0.18);
    overflow: hidden;
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: auto -5% -55% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
}

.cta-section h2,
.cta-section p {
    color: var(--white);
    position: relative;
}

/* Footer */
footer {
    background:
        radial-gradient(circle at top left, rgba(25, 167, 184, 0.18), transparent 20%),
        linear-gradient(180deg, #081f34 0%, #061826 100%);
    color: #bdd2df;
    padding: 88px 0 24px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h5 {
    color: var(--white);
    margin-bottom: 24px;
}

footer p,
footer li,
footer a {
    color: #bdd2df;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(25, 167, 184, 0.22);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 54px;
    padding-top: 22px;
}

/* Subpage Styles */
.subpage-header {
    margin-top: 122px;
    padding: 84px 0 70px;
    background: linear-gradient(180deg, rgba(232, 247, 249, 0.5), rgba(255, 255, 255, 0.95));
    border-bottom: 1px solid rgba(15, 53, 82, 0.06);
    text-align: center;
}

.subpage-content {
    padding: 88px 0;
}

.icon-box-round {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(25, 167, 184, 0.12), rgba(15, 53, 82, 0.08));
    color: var(--secondary-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 1.45rem;
    flex-shrink: 0;
}

/* Navbar Dropdown */
.dropdown-menu {
    border: 1px solid rgba(15, 53, 82, 0.08);
    border-radius: 18px;
    padding: 10px;
    margin-top: 0 !important;
    box-shadow: 0 20px 44px rgba(8, 28, 44, 0.1);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.navbar .nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-item {
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--secondary-strong);
}

.btn-lang {
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-lang:hover {
    background: var(--accent-color);
    border-color: var(--secondary-color);
}

.navbar-toggler {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(15, 53, 82, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(8, 28, 44, 0.08);
    transition: var(--transition);
    margin-right: 10px; /* Shift left by adding margin to the right */
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 167, 184, 0.18);
}

.navbar-toggler:hover {
    transform: translateY(-1px);
    border-color: rgba(25, 167, 184, 0.22);
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 22px;
    height: 16px; /* Slightly taller for 3 lines */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    position: static; /* Reset absolute positioning */
}

@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-slider .carousel-item {
        height: 680px;
    }
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(255, 255, 255, 0.94);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.15rem;
        border-radius: 28px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 250, 0.94));
        box-shadow: 0 30px 60px rgba(8, 28, 44, 0.12);
        border: 1px solid rgba(15, 53, 82, 0.06);
        position: relative;
        overflow: hidden;
    }

    .navbar-collapse::before {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 120px;
        background: linear-gradient(180deg, rgba(25, 167, 184, 0.08), transparent);
        pointer-events: none;
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 0.35rem;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-item.dropdown::after {
        display: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.95rem 1rem !important;
        margin: 0;
        border: 1px solid transparent;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.84);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, rgba(25, 167, 184, 0.12), rgba(15, 53, 82, 0.06));
        border-color: rgba(25, 167, 184, 0.18);
    }

    .nav-link.dropdown-toggle::after {
        margin-left: auto;
    }

    .dropdown-menu {
        background: rgba(240, 247, 249, 0.9);
        margin-top: 0.35rem !important;
        box-shadow: none;
        border: 1px solid rgba(15, 53, 82, 0.06);
        border-radius: 20px;
        padding: 0.55rem;
    }

    .dropdown-item {
        text-align: left;
        padding: 0.9rem 1rem;
        border-radius: 14px;
    }

    .w-100-mobile {
        width: 100%;
    }

    .lang-dropdown .btn-lang {
        justify-content: center;
        min-height: 56px;
        border-radius: 18px;
        background: rgba(232, 242, 246, 0.9);
    }

    .navbar-nav .nav-item.ms-lg-2 {
        margin-top: 0.35rem;
    }

    .navbar-nav .nav-item.ms-lg-2 .btn-quote {
        width: 100%;
        min-height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .hero-slider {
        margin-top: 108px;
    }

    .hero-slider .carousel-inner {
        border-radius: 0 0 28px 28px;
    }

    .hero-slider .carousel-item {
        height: 620px;
    }

    .hero-slider .carousel-caption {
        left: 6%;
        right: 6%;
    }

    .feature-box {
        margin-top: 20px;
    }

    .section-about,
    .section-services,
    .section-why,
    .section-stats {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .section-stats .col-md-3::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 68px;
    }

    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-toggler {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .hero-slider .carousel-item {
        height: 560px;
    }

    .hero-slider h1 {
        line-height: 1.05;
    }

    .hero-slider p {
        font-size: 1rem;
    }

    .hero-slider .btn-group-custom {
        gap: 12px;
    }

    .hero-slider .btn-group-custom .btn-lg,
    .btn {
        width: 100%;
        text-align: center;
    }

    .service-img {
        height: 220px;
    }

    .cta-section {
        padding: 72px 22px;
        border-radius: 28px;
    }

    .subpage-header {
        padding: 72px 0 56px;
    }
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: rgba(15, 53, 82, 0.88);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(25, 167, 184, 0.3);
}

.scroll-to-top i {
    font-size: 1.2rem;
    transition: var(--transition);
}

@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}

/* About Section Improvements */
.about-img-wrapper {
    padding: 15px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 130px;
    border: 5px solid #fff;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

@media (max-width: 991px) {
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 15px;
        min-width: 100px;
    }
    .experience-badge .number {
        font-size: 1.8rem;
    }
}

/* Section Dividers */
.section-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider-bottom .shape-fill {
    fill: #f4f8fb;
}

/* Services Section Background Update */
.section-services {
    background: #f4f8fb !important;
    position: relative;
    z-index: 1;
}

.section-services::before {
    display: none; /* Old gradient removed */
}

/* Add a subtle background pattern to services */
.section-services::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(25, 167, 184, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: -1;
}

/* Specific Font for Services Section */
.section-services, 
.section-services h2, 
.section-services h4, 
.section-services p, 
.section-services a {
    font-family: 'Outfit', sans-serif !important;
}

.section-services h2 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-services h4 {
    font-weight: 600;
}

/* Section Contrast Improvements */
.section-about {
    background: #ffffff !important;
    position: relative;
    z-index: 2;
}

.section-services {
    background: #f1f6f9 !important; /* Daha belirgin bir gri-mavi tonu */
    position: relative;
    z-index: 1;
}

/* Ensure the divider matches the new services background */
.section-divider-bottom .shape-fill {
    fill: #f1f6f9 !important;
}

.section-services::after {
    background-image: radial-gradient(rgba(25, 167, 184, 0.08) 2px, transparent 2px) !important;
}

/* Sector Links in Why Section */
.sector-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.sector-link:hover {
    padding-left: 8px;
    color: var(--secondary-color) !important;
    opacity: 1;
}

.sector-link:hover i {
    opacity: 1;
    color: var(--secondary-color);
}

/* About Page Modern Styles */
.about-hero {
    background: linear-gradient(135deg, #f8fbfe 0%, #e8f4f9 100%);
    border-bottom: 1px solid rgba(15, 53, 82, 0.05);
}

.stats-float {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(15, 53, 82, 0.08);
}

.icon-circle {
    width: 46px;
    height: 46px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.mission-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.value-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15, 53, 82, 0.05);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 34, 52, 0.08);
    border-color: var(--secondary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #f0f7f9;
    color: var(--secondary-color);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    color: #fff;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 88px;
    background:
        radial-gradient(circle at 15% 20%, rgba(25, 167, 184, 0.12), transparent 24%),
        linear-gradient(135deg, #f8fbfe 0%, #eef7fa 52%, #ffffff 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: auto -8% -55% auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 53, 82, 0.08), transparent 68%);
}

.about-hero .breadcrumb {
    margin-bottom: 1.25rem;
}

.about-hero .breadcrumb-item,
.about-hero .breadcrumb-item a,
.about-hero .breadcrumb-item.active {
    color: var(--light-text);
}

.about-hero .display-4 {
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}

.about-hero-text {
    max-width: 760px;
    color: var(--light-text);
    font-size: 1.06rem;
}

.about-page-content {
    padding-top: 0;
}

.corporate-intro-card {
    margin-top: -48px;
    padding: 40px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 65px rgba(8, 28, 44, 0.08);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(25, 167, 184, 0.12);
    color: var(--secondary-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-highlight-item {
    padding: 1rem 1.1rem;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 246, 249, 0.85));
    border: 1px solid rgba(15, 53, 82, 0.08);
    box-shadow: 0 14px 30px rgba(8, 28, 44, 0.05);
}

.about-highlight-item h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.about-visual-wrap {
    padding: 16px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(233, 243, 247, 0.84));
    box-shadow: 0 24px 55px rgba(8, 28, 44, 0.08);
}

.about-visual-wrap img {
    width: 100%;
    border-radius: 26px !important;
    min-height: 520px;
    object-fit: cover;
}

.stats-float {
    box-shadow: 0 18px 38px rgba(8, 28, 44, 0.1);
}

.stats-float .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.stats-float .text {
    margin-top: 0.35rem;
    color: var(--light-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-values-grid {
    margin-top: 2.2rem !important;
}

.about-values-grid .value-card {
    padding: 2rem !important;
    box-shadow: 0 18px 36px rgba(8, 28, 44, 0.06);
}

.about-values-grid .value-card p {
    font-size: 0.98rem;
}

@media (max-width: 991px) {
    .about-hero {
        padding: 88px 0 76px;
    }

    .corporate-intro-card {
        margin-top: -34px;
        padding: 28px;
    }

    .about-visual-wrap img {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 78px 0 64px;
    }

    .corporate-intro-card {
        margin-top: -24px;
        padding: 22px;
        border-radius: 26px;
    }

    .about-highlight-item {
        padding: 0.9rem 1rem;
    }

    .about-visual-wrap {
        padding: 10px;
        border-radius: 24px;
    }

    .about-visual-wrap img {
        min-height: 300px;
        border-radius: 18px !important;
    }

    .stats-float {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px 18px;
    }
}

/* Vision & Mission Page Styles */
.subpage-header {
    background: 
        radial-gradient(circle at 10% 20%, rgba(25, 167, 184, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(15, 53, 82, 0.05) 0%, transparent 25%),
        linear-gradient(135deg, #f4f9fb 0%, #ffffff 50%, #f0f7f9 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    border-bottom: 1px solid rgba(15, 53, 82, 0.05);
}

.subpage-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 167, 184, 0.05) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.subpage-header .breadcrumb-item,
.subpage-header .breadcrumb-item a,
.subpage-header .breadcrumb-item.active {
    color: var(--light-text);
    font-weight: 500;
}

.vm-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(8, 28, 44, 0.12) !important;
}

.vm-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(15, 53, 82, 0.03);
    z-index: 1;
    transform: rotate(-15deg);
}

.divider-sm {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.value-item-modern {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15, 53, 82, 0.06);
    transition: all 0.3s ease;
}

.value-item-modern:hover {
    background: #f8fbfe;
    border-color: var(--secondary-color);
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    background: #f0f7f9;
    color: var(--secondary-color);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.value-item-modern:hover .value-icon-wrap {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Service Detail Page Styles */
.service-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 53, 82, 0.05);
    box-shadow: 0 10px 20px rgba(8, 28, 44, 0.03);
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    transform: translateX(5px);
    border-color: var(--secondary-color);
}

.service-feature-item .icon-sm {
    width: 40px;
    height: 40px;
    background: #f0f7f9;
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.service-feature-item h6 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Sector Page Specific Styles */
.sector-nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #fff;
    border-radius: 99px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(8, 28, 44, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 53, 82, 0.05);
    margin-bottom: 0.5rem;
}

.sector-nav-pill:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 53, 82, 0.15);
}

.sector-detail-section {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sector-detail-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(8, 28, 44, 0.08) !important;
}

.sector-img-wrap img {
    height: 100%;
    min-height: 450px;
}

@media (max-width: 991px) {
    .sector-img-wrap img {
        min-height: 300px;
        height: 300px;
    }
}

/* Blog Styles */
.blog-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(15, 53, 82, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(8, 28, 44, 0.1) !important;
    border-color: rgba(15, 53, 82, 0.1);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.blog-card img {
    transition: transform 0.6s ease;
}

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

.blog-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--primary-color);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-content-area {
    line-height: 1.9;
    font-size: 1.1rem;
    color: #4a5568;
}

.blog-content-area h3 {
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.blog-quote {
    padding: 30px 40px;
    background: #f8fbfe;
    border-radius: 24px;
    border-left: 5px solid var(--secondary-color);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary-color);
    position: relative;
}

.blog-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    opacity: 0.1;
    font-family: serif;
}

/* FAQ Custom Styles */
.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.faq-accordion .accordion-button {
    background: #fff;
    border-radius: 20px !important;
    padding: 24px 30px;
    box-shadow: 0 4px 15px rgba(12, 54, 74, 0.05);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 30px rgba(12, 54, 74, 0.1);
    transform: translateY(-2px);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-body {
    background: #fff;
    border-radius: 0 0 20px 20px !important;
    padding: 0 30px 30px;
    margin-top: -10px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    box-shadow: 0 15px 30px rgba(12, 54, 74, 0.08);
}

.faq-kicker {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(15, 53, 82, 0.05);
    color: var(--primary-color);
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
