/********** Template CSS **********/
:root {
    --primary: #015FC9;
    --secondary: #FFFFFF;
    --light: #FFFFFF;
    --dark: #FFFFFF;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
    color: #FFFFF;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


/*** Parantez Sigorta additions ***/
.contact-card,
.service-category,
.career-form,
.partner-logo {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.contact-card {
    height: 100%;
    padding: 2rem;
    border-radius: 10px;
    background: #FFFFFF;
}

.contact-card .contact-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
}

.whatsapp-button {
    background: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
}

.whatsapp-button:hover {
    background: #1da851;
    border-color: #1da851;
    color: #FFFFFF;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 104px;
    padding: 1.25rem;
    border: 1px solid #EEF1F6;
    border-radius: 10px;
    background: #FFFFFF;
}

.partner-logo img {
    display: block;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

.partner-logo .partner-name {
    color: #1A2942;
    font-family: Poppins, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.service-category {
    height: 100%;
    padding: 2rem;
    border-radius: 10px;
    background: #FFFFFF;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-category-header i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 24px;
}

.service-product-list {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-product-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 1rem;
    border: 1px solid #EEF1F6;
    border-radius: 7px;
    color: #1A2942;
    font-weight: 500;
}

.service-product-list a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.form-notice {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    background: #F4F8FD;
}

.kvkk-check {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-top: .5rem;
}

.kvkk-check input {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    margin-top: .2rem;
}

.career-form {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    background: #FFFFFF;
}

.success-panel {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    text-align: center;
}

.success-panel i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    color: #FFFFFF;
    background: #25D366;
    font-size: 38px;
}

@media (max-width: 1199.98px) {
    .partner-grid {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .partner-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .partner-logo {
        min-height: 90px;
        padding: 1rem;
    }

    .career-form,
    .success-panel {
        padding: 1.5rem;
    }
}


/*** Parantez Sigorta — new site architecture ***/
:root {
    --parantez-blue: #015FC9;
    --parantez-navy: #10233F;
    --parantez-ink: #16263D;
    --parantez-copy: #53657B;
    --parantez-paper: #F7F8FA;
    --parantez-rule: #DDE5EE;
    --parantez-white: #FFFFFF;
}

body {
    background: var(--parantez-paper);
    color: var(--parantez-ink);
}

body > .navbar,
body > .container-fluid.bg-dark.text-white-50,
.legacy-home-carousel {
    display: none !important;
}

/* Shared shell */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--parantez-rule);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 2.2rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
}

.site-brand:hover {
    color: var(--parantez-ink);
}

.site-brand img {
    display: block;
    width: 148px;
    height: auto;
}

.site-brand em {
    color: var(--parantez-blue);
    font-style: normal;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 2.1rem;
}

.site-navigation,
.site-menu__actions {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.site-nav-link {
    position: relative;
    padding: .5rem .55rem;
    color: #4A5C71;
    font-size: .91rem;
    font-weight: 500;
}

.site-nav-link::after {
    position: absolute;
    right: .55rem;
    bottom: .2rem;
    left: .55rem;
    height: 1.5px;
    content: "";
    background: var(--parantez-blue);
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .18s ease, transform .18s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--parantez-ink);
}

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

.site-nav-dropdown .dropdown-toggle::after {
    margin-left: .45rem;
    border: 0;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: .7rem;
    font-weight: 900;
}

.site-nav-dropdown .dropdown-menu {
    min-width: 238px;
    margin-top: .85rem;
    padding: .45rem;
    border: 1px solid var(--parantez-rule);
    border-radius: 4px;
    box-shadow: 0 18px 34px rgba(16, 35, 63, .11);
}

.site-nav-dropdown .dropdown-item {
    padding: .62rem .7rem;
    border-radius: 3px;
    color: #45586E;
    font-size: .87rem;
}

.site-nav-dropdown .dropdown-item:hover {
    color: var(--parantez-blue);
    background: #F2F7FC;
}

.site-menu__actions {
    gap: 1rem;
    margin-left: .2rem;
}

.site-phone {
    color: #44566B;
    font-size: .83rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-phone i {
    margin-right: .38rem;
    color: var(--parantez-blue);
    font-size: .74rem;
}

.site-quote-button,
.home-primary-action,
.home-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .78rem 1.05rem;
    border: 1px solid var(--parantez-blue);
    background: var(--parantez-blue);
    color: #FFFFFF;
    font-size: .86rem;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.site-quote-button:hover,
.home-primary-action:hover,
.home-cta > a:hover {
    border-color: #004A9D;
    background: #004A9D;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.site-menu-toggle {
    display: none;
    padding: .4rem;
    border: 0;
    background: transparent;
    color: var(--parantez-ink);
    font-size: 1.15rem;
}

.site-footer {
    margin-top: 7rem;
    padding: 4.75rem max(2.2rem, calc((100vw - 1320px) / 2)) 1.35rem;
    background: var(--parantez-navy);
    color: rgba(255, 255, 255, .72);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.25fr 1fr;
    gap: 2.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.site-brand--footer {
    color: #FFFFFF;
}

.site-brand--footer:hover {
    color: #FFFFFF;
}

.site-footer p {
    max-width: 290px;
    margin: 1.3rem 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: .9rem;
    line-height: 1.72;
}

.site-footer__links,
.site-footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .58rem;
}

.site-footer__links > span,
.site-footer__social > span {
    margin-bottom: .55rem;
    color: #FFFFFF;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer a {
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
}

.site-footer a:hover {
    color: #FFFFFF;
}

.site-footer__social > div {
    display: flex;
    gap: .7rem;
}

.site-footer__social > div a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .27);
    border-radius: 50%;
}

.site-footer__whatsapp {
    margin-top: .75rem;
}

.site-footer__whatsapp i {
    margin-right: .3rem;
    color: #5FE380;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin: 4rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .45);
    font-size: .77rem;
}

/* Inner pages */
.site-page-hero {
    padding: 5.6rem max(2.2rem, calc((100vw - 1180px) / 2));
    background: #EAF2FA;
    border-bottom: 1px solid var(--parantez-rule);
}

.site-page-hero > div {
    max-width: 740px;
}

.site-page-hero span,
.section-kicker {
    display: block;
    margin-bottom: 1rem;
    color: var(--parantez-blue);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-page-hero h1 {
    margin: 0;
    color: var(--parantez-ink);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -.06em;
    line-height: 1.02;
}

.site-page-hero p {
    max-width: 560px;
    margin: 1.35rem 0 0;
    color: var(--parantez-copy);
    font-size: 1.05rem;
}

.site-page-hero + .container-fluid.py-5,
.site-page-hero + .container-xxl.py-5 {
    padding-top: 5rem !important;
}

.site-page-hero + .container-fluid.py-5 > .container,
.site-page-hero + .container-xxl.py-5 > .container {
    max-width: 1180px;
}

.site-page-hero ~ .container-fluid.py-5 .display-6,
.site-page-hero ~ .container-xxl.py-5 .display-6 {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -.05em;
}

.site-page-hero ~ .container-fluid.py-5 .bg-light,
.site-page-hero ~ .container-xxl.py-5 .bg-light {
    border: 1px solid var(--parantez-rule);
    background: #FFFFFF !important;
    border-radius: 4px !important;
}

.site-page-hero ~ .container-fluid.py-5 .contact-card,
.site-page-hero ~ .container-xxl.py-5 .contact-card,
.site-page-hero ~ .container-fluid.py-5 .career-form,
.site-page-hero ~ .container-xxl.py-5 .career-form,
.site-page-hero ~ .container-fluid.py-5 .service-category,
.site-page-hero ~ .container-xxl.py-5 .service-category {
    border: 1px solid var(--parantez-rule);
    border-radius: 4px;
    box-shadow: none;
}

.site-page-hero ~ .container-fluid.py-5 .form-control,
.site-page-hero ~ .container-xxl.py-5 .form-control {
    border-radius: 3px;
}

/* New home experience */
.home-experience {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2.4rem 2.2rem 0;
}

.home-experience ~ .container-xxl.py-5,
.home-experience ~ .container-fluid.appointment {
    display: none;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
    min-height: 590px;
    background: #FFFFFF;
    border: 1px solid var(--parantez-rule);
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(3rem, 7vw, 7rem);
}

.home-hero h1,
.home-solutions h2,
.home-process h2,
.home-cta h2 {
    margin: 0;
    color: var(--parantez-ink);
    font-size: clamp(2.9rem, 5.6vw, 5.45rem);
    font-weight: 600;
    letter-spacing: -.075em;
    line-height: .98;
}

.home-hero p {
    max-width: 490px;
    margin: 1.6rem 0 0;
    color: var(--parantez-copy);
    font-size: 1.05rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.home-primary-action {
    padding: .95rem 1.25rem;
}

.home-secondary-action {
    color: var(--parantez-ink);
    font-size: .9rem;
    font-weight: 600;
}

.home-secondary-action:hover {
    color: var(--parantez-blue);
}

.home-whatsapp-link {
    margin-top: 2.2rem;
    color: #3E5969;
    font-size: .84rem;
}

.home-whatsapp-link i {
    margin-right: .4rem;
    color: #28B463;
    font-size: 1rem;
}

.home-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: url(../img/carousel-2.jpg) center center / cover no-repeat;
}

.home-hero__visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(16, 35, 63, .05), rgba(16, 35, 63, .56));
}

.home-hero__caption {
    position: absolute;
    right: 2.3rem;
    bottom: 2.3rem;
    left: 2.3rem;
    z-index: 1;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .48);
    color: #FFFFFF;
}

.home-hero__caption span {
    display: block;
    margin-bottom: .55rem;
    font-size: .72rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.home-hero__caption strong {
    display: block;
    max-width: 280px;
    font-family: Poppins, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.home-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 4rem;
    border: 1px solid var(--parantez-rule);
    border-top: 0;
    background: #FFFFFF;
}

.home-assurance > div {
    display: flex;
    gap: 1rem;
    padding: 1.4rem 1.55rem;
    border-right: 1px solid var(--parantez-rule);
}

.home-assurance > div:last-child {
    border-right: 0;
}

.home-assurance span {
    color: var(--parantez-blue);
    font-family: Poppins, sans-serif;
    font-size: .75rem;
    font-weight: 700;
}

.home-assurance p {
    margin: 0;
    color: #42566D;
    font-size: .84rem;
    line-height: 1.55;
}

.home-solutions,
.home-partners {
    padding-top: 8.5rem;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.7rem;
}

.section-heading h2,
.home-partners h2 {
    max-width: 720px;
    margin: 0;
    color: var(--parantez-ink);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: 1.04;
}

.section-heading > a {
    padding-bottom: .45rem;
    border-bottom: 1px solid var(--parantez-ink);
    color: var(--parantez-ink);
    font-size: .86rem;
    font-weight: 600;
    white-space: nowrap;
}

.section-heading > a i {
    margin-left: .4rem;
    color: var(--parantez-blue);
}

.home-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--parantez-rule);
    border-left: 1px solid var(--parantez-rule);
}

.home-solution-card {
    position: relative;
    min-height: 256px;
    padding: 1.6rem 1.65rem;
    border-right: 1px solid var(--parantez-rule);
    border-bottom: 1px solid var(--parantez-rule);
    background: transparent;
    transition: background .2s ease;
}

.home-solution-card:hover {
    background: #FFFFFF;
}

.home-solution-card > span {
    color: var(--parantez-blue);
    font-size: .74rem;
    font-weight: 700;
}

.home-solution-card h3 {
    max-width: 230px;
    margin: 3.6rem 0 .8rem;
    color: var(--parantez-ink);
    font-size: 1.36rem;
    font-weight: 600;
    letter-spacing: -.045em;
}

.home-solution-card p {
    max-width: 290px;
    margin: 0;
    color: var(--parantez-copy);
    font-size: .88rem;
    line-height: 1.62;
}

.home-solution-card > i {
    position: absolute;
    top: 1.65rem;
    right: 1.65rem;
    color: #90A1B4;
    font-size: .8rem;
    transition: color .2s ease, transform .2s ease;
}

.home-solution-card:hover > i {
    color: var(--parantez-blue);
    transform: translate(2px, -2px);
}

.home-process {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(3rem, 8vw, 9rem);
    margin-top: 8.5rem;
    padding: clamp(3rem, 7vw, 6rem);
    background: var(--parantez-navy);
}

.home-process h2 {
    max-width: 500px;
    color: #FFFFFF;
    font-size: clamp(2.1rem, 3.7vw, 3.75rem);
}

.home-process p {
    color: rgba(255, 255, 255, .66);
}

.home-process__intro > p {
    max-width: 410px;
    margin: 1.5rem 0 0;
}

.home-process .section-kicker {
    color: #8DC4FA;
}

.home-process__steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-process__steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.home-process__steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.home-process__steps span {
    grid-row: span 2;
    color: #79B7F4;
    font-size: .75rem;
    font-weight: 700;
}

.home-process__steps strong {
    color: #FFFFFF;
    font-family: Poppins, sans-serif;
    font-size: 1.08rem;
    letter-spacing: -.03em;
}

.home-process__steps p {
    margin: .45rem 0 0;
    font-size: .87rem;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 7.5rem 0 0;
}

.home-cta h2 {
    max-width: 790px;
    font-size: clamp(2.2rem, 4.2vw, 4.15rem);
}

.home-cta > a {
    flex: 0 0 auto;
}

.home-partner-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--parantez-rule);
    border-left: 1px solid var(--parantez-rule);
}

.home-partner-list > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 105px;
    padding: 1.2rem;
    border-right: 1px solid var(--parantez-rule);
    border-bottom: 1px solid var(--parantez-rule);
    background: #FFFFFF;
}

.home-partner-list img {
    width: 100%;
    max-height: 42px;
    object-fit: contain;
}

/* AXA's source artwork includes generous vertical whitespace, while Anadolu's
   mark is naturally narrower than the other partner lockups. Give both marks
   a slightly larger display box so their visible artwork has equal optical
   weight without distorting the original proportions. */
.home-partner-list img[src*="axa-sigorta"],
.partner-grid img[src*="axa-sigorta"] {
    max-height: 90px;
    transform: scale(1.45);
}

.home-partner-list img[src*="anadolu-sigorta"],
.partner-grid img[src*="anadolu-sigorta"] {
    max-height: 72px;
    transform: scale(1.35);
}

@media (max-width: 767.98px) {
    .home-partner-list img[src*="axa-sigorta"],
    .partner-grid img[src*="axa-sigorta"] {
        transform: scale(1.25);
    }

    .home-partner-list img[src*="anadolu-sigorta"],
    .partner-grid img[src*="anadolu-sigorta"] {
        transform: scale(1.18);
    }
}

@media (max-width: 1199.98px) {
    .site-header__inner,
    .home-experience {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .site-menu {
        gap: 1rem;
    }

    .site-phone span {
        display: none;
    }

    .home-assurance {
        margin: 0 2.5rem;
    }

    .home-partner-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    .site-header__inner {
        min-height: 68px;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    .site-menu {
        display: block;
        width: 100%;
        padding: .85rem 0 1.2rem;
    }

    .site-menu.collapse:not(.show) {
        display: none;
    }

    .site-navigation,
    .site-menu__actions {
        align-items: stretch;
        flex-direction: column;
        gap: .15rem;
    }

    .site-nav-link {
        display: block;
        padding: .72rem 0;
    }

    .site-nav-link::after {
        right: auto;
        left: 0;
        width: 22px;
    }

    .site-nav-dropdown .dropdown-menu {
        margin-top: 0;
        border: 0;
        box-shadow: none;
    }

    .site-menu__actions {
        align-items: flex-start;
        gap: .75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--parantez-rule);
    }

    .site-phone span {
        display: inline;
    }

    .site-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .site-footer__social {
        grid-column: 1 / -1;
    }

    .home-hero {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 410px;
    }

    .home-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-process {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .site-menu.collapse:not(.show) {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    .site-header__inner,
    .home-experience {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .site-brand {
        font-size: .98rem;
    }

    .site-page-hero {
        padding: 3.7rem 1rem;
    }

    .site-page-hero h1 {
        font-size: 2.7rem;
    }

    .home-hero {
        min-height: 0;
    }

    .home-hero__content {
        padding: 3.6rem 1.5rem;
    }

    .home-hero h1 {
        font-size: 3.05rem;
    }

    .home-hero__visual {
        min-height: 330px;
    }

    .home-hero__caption {
        right: 1.4rem;
        bottom: 1.4rem;
        left: 1.4rem;
    }

    .home-assurance {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .home-assurance > div {
        border-right: 0;
        border-bottom: 1px solid var(--parantez-rule);
    }

    .home-assurance > div:last-child {
        border-bottom: 0;
    }

    .home-solutions,
    .home-partners {
        padding-top: 5.25rem;
    }

    .section-heading,
    .home-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.4rem;
    }

    .home-solution-grid {
        grid-template-columns: 1fr;
    }

    .home-solution-card {
        min-height: 222px;
    }

    .home-solution-card h3 {
        margin-top: 2.5rem;
    }

    .home-process {
        gap: 3rem;
        margin-top: 5.25rem;
        padding: 3rem 1.5rem;
    }

    .home-cta {
        padding-top: 5.25rem;
    }

    .home-partner-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer {
        margin-top: 5rem;
        padding: 3.5rem 1rem 1.2rem;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .site-footer__intro,
    .site-footer__social {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: .35rem;
        margin-top: 2.75rem;
    }
}

/* Trust content, progressive disclosure and mobile contact access */
.skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 1100;
    padding: .7rem 1rem;
    background: var(--parantez-navy);
    color: #FFFFFF;
    font-size: .85rem;
    font-weight: 600;
    transform: translateY(-180%);
}

.skip-link:focus {
    color: #FFFFFF;
    transform: translateY(0);
}

.home-trust,
.home-faq {
    content-visibility: auto;
    contain-intrinsic-size: 520px;
}

.home-trust {
    margin-top: 8.5rem;
}

.home-trust .section-heading {
    align-items: flex-end;
}

.home-trust .section-heading > p {
    max-width: 330px;
    margin: 0;
    color: var(--parantez-copy);
    font-size: .9rem;
    line-height: 1.65;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.8rem;
    border-top: 1px solid var(--parantez-rule);
    border-left: 1px solid var(--parantez-rule);
}

.home-trust-grid article {
    min-height: 245px;
    padding: 1.7rem;
    border-right: 1px solid var(--parantez-rule);
    border-bottom: 1px solid var(--parantez-rule);
    background: #FFFFFF;
}

.home-trust-grid article > span {
    color: var(--parantez-blue);
    font-size: .74rem;
    font-weight: 700;
}

.home-trust-grid h3 {
    max-width: 250px;
    margin: 3.2rem 0 .8rem;
    color: var(--parantez-ink);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -.04em;
}

.home-trust-grid p {
    max-width: 290px;
    margin: 0;
    color: var(--parantez-copy);
    font-size: .88rem;
    line-height: 1.65;
}

.home-faq {
    margin-top: 8.5rem;
}

.home-faq .section-heading {
    align-items: flex-end;
}

.home-faq-list {
    max-width: 880px;
    margin-top: 2.8rem;
    border-top: 1px solid var(--parantez-rule);
}

.home-faq-list details {
    border-bottom: 1px solid var(--parantez-rule);
}

.home-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 0;
    color: var(--parantez-ink);
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::after {
    color: var(--parantez-blue);
    content: "+";
    font-family: Roboto, sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.home-faq-list details[open] summary::after {
    content: "−";
}

.home-faq-list details p {
    max-width: 710px;
    margin: -.35rem 0 1.35rem;
    color: var(--parantez-copy);
    font-size: .92rem;
    line-height: 1.7;
}

.home-faq-list a {
    color: var(--parantez-blue);
    text-decoration: underline;
    text-underline-offset: .15em;
}

.mobile-quick-actions {
    display: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(1, 95, 201, .42);
    outline-offset: 3px;
}

@media (max-width: 991.98px) {
    .home-trust,
    .home-faq {
        margin-top: 6rem;
    }
}

@media (max-width: 767.98px) {
    body.has-mobile-quick-actions {
        padding-bottom: 70px;
    }

    .mobile-quick-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1039;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: 64px;
        border-top: 1px solid rgba(255, 255, 255, .16);
        background: var(--parantez-navy);
        box-shadow: 0 -8px 25px rgba(16, 35, 63, .14);
    }

    .mobile-quick-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: .25rem;
        border-right: 1px solid rgba(255, 255, 255, .13);
        color: #FFFFFF;
        font-size: .7rem;
        font-weight: 600;
    }

    .mobile-quick-actions a:last-child {
        border-right: 0;
        background: var(--parantez-blue);
    }

    .mobile-quick-actions i {
        color: #8DC4FA;
        font-size: 1rem;
    }

    .mobile-quick-actions a:last-child i {
        color: #FFFFFF;
    }

    .home-trust,
    .home-faq {
        margin-top: 5.25rem;
    }

    .home-trust .section-heading,
    .home-faq .section-heading {
        align-items: flex-start;
        gap: 1.4rem;
    }

    .home-trust-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .home-trust-grid article {
        min-height: 0;
        padding: 1.45rem;
    }

    .home-trust-grid h3 {
        margin-top: 2rem;
    }

    .home-faq-list {
        margin-top: 2rem;
    }

    .home-faq-list summary {
        font-size: .93rem;
    }

    .back-to-top {
        bottom: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .wow {
        visibility: visible !important;
        animation-name: none !important;
    }
}

/* Product detail pages */
.product-detail {
    max-width: 1180px;
    margin: 0 auto;
    padding: 6rem 2.2rem 0;
}

.product-detail__lead {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: end;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--parantez-rule);
}

.product-detail h2 {
    margin: 0;
    color: var(--parantez-ink);
    font-size: clamp(2.1rem, 4vw, 3.9rem);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: 1.04;
}

.product-detail__lead > p {
    margin: 0;
    color: var(--parantez-copy);
    font-size: 1rem;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--parantez-rule);
    border-left: 1px solid var(--parantez-rule);
    margin-top: 4rem;
}

.product-detail__card {
    position: relative;
    min-height: 250px;
    padding: 1.7rem;
    border-right: 1px solid var(--parantez-rule);
    border-bottom: 1px solid var(--parantez-rule);
    background: #FFFFFF;
}

.product-detail__card > span {
    color: var(--parantez-blue);
    font-size: .73rem;
    font-weight: 700;
}

.product-detail__card > i {
    position: absolute;
    top: 1.7rem;
    right: 1.7rem;
    color: #7EAEDB;
    font-size: 1.15rem;
}

.product-detail__card h3 {
    margin: 3.6rem 0 .8rem;
    color: var(--parantez-ink);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -.04em;
}

.product-detail__card p {
    margin: 0;
    color: var(--parantez-copy);
    font-size: .88rem;
    line-height: 1.65;
}

.product-detail__coverage {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 5rem;
    margin-top: 7rem;
    padding: 4.5rem;
    background: #EAF2FA;
}

.product-detail__coverage h2 {
    max-width: 450px;
    font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.product-detail__coverage-title > p {
    max-width: 450px;
    margin: 1.3rem 0 0;
    color: var(--parantez-copy);
}

.product-detail__coverage ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail__coverage li {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.25rem 0;
    border-top: 1px solid #C8D8E8;
}

.product-detail__coverage li:last-child {
    border-bottom: 1px solid #C8D8E8;
}

.product-detail__coverage strong {
    color: var(--parantez-ink);
    font-size: .98rem;
}

.product-detail__coverage li span {
    color: var(--parantez-copy);
    font-size: .86rem;
}

.product-detail__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 7rem 0 0;
}

.product-detail__cta h2 {
    max-width: 760px;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

.product-detail__cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .55rem;
    padding: .95rem 1.25rem;
    background: var(--parantez-blue);
    color: #FFFFFF;
    font-size: .87rem;
    font-weight: 600;
}

.product-detail__cta a:hover {
    background: #004A9D;
    color: #FFFFFF;
}

.product-detail__form {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 4rem;
    margin-top: 4rem;
    padding: 4.5rem;
    background: var(--parantez-ink);
}

.product-detail__form h2 {
    margin-top: .9rem;
    color: #FFFFFF;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.product-detail__form-copy > p {
    margin: 1.4rem 0 0;
    color: #B8C8D9;
    line-height: 1.7;
}

.product-detail__form-product {
    display: flex;
    gap: .55rem;
    align-items: center;
    font-size: .88rem;
}

.product-detail__form-product i,
.product-detail__form-product strong {
    color: #FFFFFF;
}

.product-detail__form form {
    padding: 2rem;
    background: #FFFFFF;
}

.product-detail__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-detail__form label {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    color: var(--parantez-ink);
    font-size: .76rem;
    font-weight: 600;
}

.product-detail__form input[type="text"],
.product-detail__form input[type="date"],
.product-detail__form input[type="tel"],
.product-detail__form textarea {
    width: 100%;
    min-height: 48px;
    padding: .75rem .85rem;
    border: 1px solid #D6E1EC;
    border-radius: 0;
    color: var(--parantez-ink);
    font: inherit;
    outline: none;
}

.product-detail__form textarea {
    resize: vertical;
}

.product-detail__form label em {
    color: var(--parantez-copy);
    font-style: normal;
    font-weight: 400;
}

.product-detail__form input:focus {
    border-color: var(--parantez-blue);
    box-shadow: 0 0 0 3px rgba(1, 95, 201, .12);
}

.product-detail__form-full {
    grid-column: 1 / -1;
}

.product-detail__form-consent {
    flex-direction: row !important;
    align-items: flex-start;
    color: var(--parantez-copy) !important;
    font-size: .78rem !important;
    font-weight: 400 !important;
    line-height: 1.55;
}

.product-detail__form-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-top: .15rem;
    accent-color: var(--parantez-blue);
}

.product-detail__form-consent a {
    color: var(--parantez-blue);
    text-decoration: underline;
}

.product-detail__form button {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 52px;
    border: 0;
    background: var(--parantez-blue);
    color: #FFFFFF;
    font: inherit;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
}

.product-detail__form button:hover {
    background: #004A9D;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.form-submit-status {
    margin: 0 0 1rem;
    color: #B42318;
    font-size: .9rem;
}

@media (max-width: 991.98px) {
    .product-detail__lead,
    .product-detail__coverage,
    .product-detail__form {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-detail__grid {
        grid-template-columns: 1fr;
    }

    .product-detail__coverage {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .product-detail {
        padding: 4rem 1rem 0;
    }

    .product-detail__lead {
        gap: 1.5rem;
        padding-bottom: 3rem;
    }

    .product-detail__grid {
        margin-top: 3rem;
    }

    .product-detail__coverage {
        margin-top: 4rem;
        padding: 2rem 1.4rem;
    }

    .product-detail__form {
        margin-top: 3rem;
        padding: 2.5rem 1.4rem;
    }

    .product-detail__form form {
        padding: 1.4rem;
    }

    .product-detail__form-grid {
        grid-template-columns: 1fr;
    }

    .product-detail__form-full,
    .product-detail__form button {
        grid-column: auto;
    }

    .product-detail__cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 4rem;
    }
}


/*** Parantez Sigorta — modern visual layer ***/
:root {
    --primary: #015FC9;
    --primary-deep: #014B9E;
    --ink: #12233D;
    --muted: #64748B;
    --canvas: #F6F8FB;
    --line: #E3EAF2;
    --surface: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--canvas);
    letter-spacing: .005em;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
    letter-spacing: -.025em;
}

.bg-light {
    background-color: #F4F7FA !important;
}

.bg-dark {
    background-color: #0D2340 !important;
}

.btn {
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.btn-primary,
.btn.btn-secondary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    color: #FFFFFF;
    background: var(--primary-deep);
    border-color: var(--primary-deep);
}

.btn.btn-light {
    border: 1px solid var(--line);
    background: #FFFFFF;
}

.btn.btn-light:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/* Header */
.container-fluid.bg-dark.text-white-50 {
    background-color: #0D2340 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.container-fluid.bg-dark.text-white-50 a {
    color: rgba(255, 255, 255, .78) !important;
}

.container-fluid.bg-dark.text-white-50 .btn-square {
    width: 30px;
    height: 30px;
    border-color: rgba(255, 255, 255, .35);
}

.navbar {
    min-height: 82px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 5px 16px rgba(16, 35, 61, .045);
}

.navbar .navbar-brand img {
    max-height: 54px;
}

.navbar .navbar-nav {
    gap: .1rem;
}

.navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: .68rem .9rem;
    border-radius: 5px;
    color: #44546A;
    font-size: .9rem;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(1, 95, 201, .065);
}

.navbar .navbar-toggler {
    padding: .4rem .55rem;
    border-color: var(--line);
    box-shadow: none !important;
}

.navbar .dropdown-menu {
    padding: .55rem;
    border: 1px solid var(--line) !important;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(16, 35, 61, .12);
}

.navbar .dropdown-item {
    padding: .58rem .8rem;
    border-radius: 4px;
    color: #44546A;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--primary);
    background: rgba(1, 95, 201, .065);
}

/* Home hero */
#header-carousel .carousel-item {
    position: relative;
    min-height: min(680px, 62vw);
    background: #DCE7F1;
}

#header-carousel .carousel-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(244, 248, 251, .94) 0%, rgba(244, 248, 251, .78) 41%, rgba(244, 248, 251, .12) 72%);
    pointer-events: none;
}

#header-carousel .carousel-item > img {
    min-height: min(680px, 62vw);
    object-fit: cover;
    object-position: center;
    filter: saturate(.85) contrast(.96);
}

#header-carousel .carousel-caption {
    z-index: 2;
}

#header-carousel .carousel-caption .col-12 {
    max-width: 620px;
}

#header-carousel .carousel-caption h1 {
    color: var(--ink) !important;
    font-size: clamp(2.45rem, 4.3vw, 4.55rem);
    line-height: 1.06;
    letter-spacing: -.05em;
}

#header-carousel .carousel-caption p {
    max-width: 440px;
    color: #465A72 !important;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.65rem;
    height: 2.65rem;
    border: 0;
    border-radius: 6px;
    background-color: var(--primary);
}

/* Inner-page heading */
.page-header:not(:has(#header-carousel)) {
    position: relative;
    isolation: isolate;
    background-image: linear-gradient(90deg, rgba(8, 34, 65, .94), rgba(8, 34, 65, .7)), url(../img/carousel-1.jpg);
}

.page-header:not(:has(#header-carousel))::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(120deg, rgba(1, 95, 201, .19), transparent 58%);
}

.page-header:not(:has(#header-carousel)) h1,
.page-header:not(:has(#header-carousel)) p,
.page-header:not(:has(#header-carousel)) .breadcrumb-item,
.page-header:not(:has(#header-carousel)) .breadcrumb-item a {
    color: #FFFFFF !important;
}

.page-header:not(:has(#header-carousel)) .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .6);
}

/* Content surfaces */
.container-xxl,
.container-fluid {
    position: relative;
}

.service-item,
.service-category,
.contact-card,
.career-form,
.partner-logo,
.success-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
}

.service-item {
    background: var(--surface);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-item:hover {
    border-color: rgba(1, 95, 201, .34);
    box-shadow: 0 12px 28px rgba(16, 35, 61, .075);
    transform: translateY(-3px);
}

.service-item .service-icon {
    width: 78px;
    height: 78px;
    border-radius: 0 8px 8px 0 !important;
}

.service-item h4 {
    font-size: 1.15rem;
}

.service-item a.btn {
    padding-left: 0 !important;
    color: var(--primary);
    background: transparent;
    border: 0;
}

.service-item a.btn::after {
    content: "→";
    margin-left: .45rem;
}

.service-item a.btn:hover {
    color: var(--primary-deep);
    background: transparent;
    border-color: transparent;
}

.appointment {
    background: #0D2340;
}

.appointment::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, rgba(1, 95, 201, .32), transparent 60%);
    pointer-events: none;
}

.appointment .container {
    position: relative;
}

.appointment .bg-white {
    border-radius: 8px !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.appointment .bg-primary {
    border-radius: 5px !important;
}

.partner-grid {
    gap: .75rem;
}

.partner-logo {
    min-height: 112px;
    padding: 1.1rem;
    transition: border-color .2s ease, transform .2s ease;
}

.partner-logo:hover {
    border-color: rgba(1, 95, 201, .35);
    transform: translateY(-2px);
}

.partner-logo .partner-name {
    color: #43536A;
    font-size: .9rem;
    font-weight: 600;
}

.service-category,
.contact-card,
.career-form {
    padding: 2rem;
    background: var(--surface);
}

.service-category-header {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.service-category-header i,
.contact-card .contact-icon {
    border-radius: 6px;
}

.service-product-list a {
    padding: .85rem 0;
    border-width: 0 0 1px;
    border-radius: 0;
    color: #30425B;
}

.service-product-list li:last-child a {
    border-bottom: 0;
}

.service-product-list a::after {
    content: "→";
    color: var(--primary);
}

.service-product-list a:hover {
    padding-left: .35rem;
    border-color: var(--line);
}

.form-control,
.form-select {
    min-height: 48px;
    border-color: #D9E2EC;
    border-radius: 5px;
    color: var(--ink);
    box-shadow: none;
}

textarea.form-control {
    min-height: 130px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(1, 95, 201, .12);
}

.form-notice {
    border-left-width: 3px;
    border-radius: 0 5px 5px 0;
    background: #F1F7FD;
    color: #40536B;
}

.kvkk-check a,
.contact-card a:not(.btn) {
    color: var(--primary);
}

.success-panel {
    padding: 3.5rem;
}

/* Footer and utility controls */
.footer {
    color: rgba(255, 255, 255, .67);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer h1,
.footer h5 {
    color: #FFFFFF;
}

.footer p,
.footer .btn.btn-link {
    color: rgba(255, 255, 255, .67);
}

.footer .btn.btn-link::before {
    color: rgba(255, 255, 255, .45);
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: .02em;
}

.footer .btn.btn-square {
    border-color: rgba(255, 255, 255, .32);
}

.back-to-top {
    right: 22px;
    bottom: 22px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(1, 95, 201, .24);
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 70px;
    }

    .navbar .navbar-nav {
        gap: .25rem;
        padding: .75rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #FFFFFF !important;
    }

    .navbar .navbar-nav .nav-link {
        padding: .7rem .75rem;
    }

    #header-carousel .carousel-item,
    #header-carousel .carousel-item > img {
        min-height: 570px;
    }

    #header-carousel .carousel-caption .container {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .container-fluid.bg-dark.text-white-50 {
        display: none;
    }

    #header-carousel .carousel-item,
    #header-carousel .carousel-item > img {
        min-height: 500px;
    }

    #header-carousel .carousel-item::after {
        background: linear-gradient(90deg, rgba(244, 248, 251, .94), rgba(244, 248, 251, .73));
    }

    #header-carousel .carousel-caption h1 {
        font-size: 2.55rem;
    }

    #header-carousel .carousel-caption .btn {
        padding: .85rem 1.2rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .service-item,
    .service-category,
    .contact-card,
    .career-form,
    .success-panel {
        padding: 1.4rem;
    }

    .service-item .service-icon {
        width: 66px;
        height: 66px;
    }

    .appointment .bg-white {
        padding: 1.5rem !important;
    }
}
