:root {
    --primary-blue: #0056b3;
    --secondary-blue: #004085;
    --accent-green: #28a745;
    --accent-orange: #fd7e14;
    --accent-red: #dc3545;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --header-height: 56px;
    --footer-height: 370px;
}

.form-control {
    box-shadow: none !important;
}

input,
select,
textarea {
    outline: 0 !important;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-size: cover;
    background-image: url('home.jpg');
    min-height: 100vh;
}

.top-bar {
    background-color: #003366;
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.logo {
    width: 120px;
    position: absolute;
    left: 0;
    top: 0;
}

.login-btn-top {
    background-color: #004a99;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 12px;
    border-radius: 4px;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 5px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.btn-nav-action {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
}

.hero-section {
    padding: 30px 0;
    text-align: center;
}

.hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #000;
}

.search-container {
    max-width: 400px;
    margin: 30px auto;
    display: flex;
    padding-left: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.search-container > i {
    display: flex;
    align-items: center;
}

.search-container input {
    border: none;
    padding: 15px 20px;
    flex-grow: 1;
}

.search-container button {
    color: white;
    border: none;
    padding: 0 40px;
    font-weight: bold;
    background: var(--primary-blue) radial-gradient(ellipse at top, #067af8, #1f5590);
}

.service-card {
    border: 3px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .2);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 400px;
    object-fit: cover;
}

.service-card-header {
    padding: 15px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    border-bottom: 2px solid #ddd;
}

.service-card-header:after {
    width: 25%;
    content: '';
    position: absolute;
    left: 37.5%;
    height: 3px;
    background: #28a745;
    bottom: -2px;
    box-shadow: 0 0 30px #28a745;
    border-radius: 100%;
}

.service-card-body {
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    color: #000;
}

.service-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.btn-giant {
    padding: 25px;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
}

.btn-giant:hover {
    color: white;
    opacity: 0.9;
}

.btn-hizmet-al {
    background: linear-gradient(#28a745, #036619);
}

.btn-hizmet-ver {
    background: linear-gradient(#fd7e14, #a64e03);
}

.btn-hizmet-al,
.btn-hizmet-ver {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.btn-hizmet-al i,
.btn-hizmet-ver i {
    font-size: 2em;
}

.btn-giant h2 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.step-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: auto auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #0056B3FF;
}

.step-icon i {
    font-size: 2.1em;
    display: block;
    color: #fff;
}

.step-number {
    position: absolute;
    top: calc(50% - 20px);
    left: -30px;
    background: linear-gradient(#0056B3FF, rgba(0, 86, 179, 0.3));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid #fff;
}

.step-card.first {
    left: -20px
}

.step-number-alt {
    background: linear-gradient(#5b9e4d, rgba(91, 158, 77, 0.3));
}

.step-number-orange {
    background: linear-gradient(#fd7e14, rgba(253, 126, 20, 0.3));
}

.step-card:has(.step-number-orange) .step-icon {
    background: #fd7e14;
}

.step-card:has(.step-number-alt) .step-icon {
    background: #5b9e4d;
}

.stars {
    color: #f1c40f;
    margin-top: 10px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

footer.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

footer.main-footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer.main-footer ul {
    list-style: none;
    padding: 0;
}

footer.main-footer ul li {
    margin-bottom: 10px;
}

footer.main-footer ul li a {
    color: #ccc;
    text-decoration: none;
}

footer.main-footer ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.bg-light-half {
    background-color: rgba(255, 255, 255, .3);
}

.btn-blue {
    background-image: url("buttons/a3.png");
    color: #fff;
    background-size: cover;
    transition: 300ms;
}

.btn-green {
    background-image: url("buttons/a1.png");
    color: #fff;
    background-size: cover;
    transition: 300ms;
}

.btn-orange {
    background-image: url("buttons/a2.png");
    color: #fff;
    background-size: cover;
    transition: 300ms;
}

.btn-blue:hover,
.btn-green:hover,
.btn-orange:hover {
    filter: brightness(90%);
    color: #fff;
}

.fb-buttons button {
    font-size: 25px;
}

@media (max-width: 992px) {
    .step-number {
        left: 10px;
        top: 10px;
    }

    .logo {
        position: static;
    }
}

.sub-page {
    min-height: calc(100vh - calc(var(--header-height) + var(--footer-height)));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.glass-card {
    width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.glass-card:not(.full-card) {
    max-width: 570px;
}

.glass-card .card-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.glass-card .card-header > h3 {
    font-size: 20px;
}

.account-page {
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 10px;
}

.account-page .page-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.pagination .previous,
.pagination .next {
    display: none;
}

.label {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    border-radius: 8px;
}


.label-primary {
    background-color: var(--primary-blue);
    color: white;
}

.label-success {
    background-color: var(--accent-green);
    color: white;
}

.label-info {
    background-color: var(--secondary-blue);
    color: white;
}

.label-light {
    background-color: #ddd;
    color: var(--text-dark);
}

.label-warning {
    background-color: var(--accent-orange);
    color: white
}

.label-danger {
    background-color: var(--accent-red);
    color: #fff;
}

.label-dark {
    background-color: var(--light-gray);
    color: var(--text-dark)
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.packages-container > .package {
    width: calc(33% - 16px);
    margin: 30px;
    display: block;
    margin: 8px;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.packages-container > .package input[type="radio"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    transition: 300ms;
}

.packages-container > .package .btn-item {
    background: #ddd;
    display: inline-block;
    text-transform: uppercase;
    padding: 3px 25px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
}

.packages-container > .package .btn-item .choosed {
    display: none;
}

.packages-container > .package .title {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.packages-container > .package .description {
    font-size: 14px;
    color: #858585;
}

.packages-container > .package .price {
    font-weight: 300;
    font-size: 20px;
}

.packages-container > .package:has(input:checked) .title {
    color: var(--primary-blue);
}

.packages-container > .package:has(input:checked) .btn-item {
    background: var(--primary-blue);
    color: #fff;
}

.packages-container > .package:has(input:checked) .btn-item .choosed {
    display: block;
}

.packages-container > .package:has(input:checked) .btn-item .choose {
    display: none;
}

.service-item-card {
    position: relative;
    width: 100%;
    padding: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.service-item-card .image {
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-item-card .image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.services-container > div {
    width: calc(25% - 30px);
    margin: 15px;
}

.stars-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.service-item-card .stars-group {
    margin-bottom: 10px;
}

.service-item-card .stars-group .stars {
    margin: 0;
}

.service-item-card .stars-group .stars-label {
    font-size: 14px;
    color: #aeaeae;
}

.stars-group .stars .star {
    color: #b6b6b6;
}

.stars-group .stars[data-value="5"] .star:nth-child(-n + 5),
.stars-group .stars[data-value="4"] .star:nth-child(-n + 4),
.stars-group .stars[data-value="3"] .star:nth-child(-n + 3),
.stars-group .stars[data-value="2"] .star:nth-child(-n + 2),
.stars-group .stars[data-value="1"] .star:nth-child(-n + 1) {
    color: #f1c40f;
}

.service-item-card > .content {
    margin: 20px 0;
}

.service-item-card > .content > .meta {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #234a8f;
}

.service-item-card > .action > a {
    width: 100%;
    background: #234a8f;
    padding: 10px;
    display: block;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: 300ms;
}

.service-item-card > .action > a:Hover {
    background: #163771;
}

.service-item-card > .content .cd-title {
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
    text-decoration: none;
    color: #313131;
    font-size: 20px;
}

.pagination .page-item {
    border-radius: 10px;
    overflow: hidden;
}

.services-list-container .services-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-details-container {
    display: flex;
    gap: 20px;
}

.service-details-container > div {
    width: 50%;
}

.service-details-container .gallery .cover {
    width: 100%;
}

.service-details-container .gallery .cover img {
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.service-details-container .gallery .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow: auto;
}

.service-details-container .gallery .thumbnails > div {
    min-width: calc(15% - 10px);
}

.service-details-container .gallery .thumbnails > div {
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.service-details-container .gallery .thumbnails > div img {
    aspect-ratio: 1;
    object-fit: cover;
    transition: 300ms;
}

.service-details-container .gallery .thumbnails > div:hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.service-details-container .content .header {
    margin-bottom: 20px;
}

.service-details-container .content .header h1 {
    font-size: 25px;
}

.service-details-container .content .header nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}

.service-details-container .content .header nav a {
    color: #606060;
    transition: 300ms;
    text-decoration: none;
}

.service-details-container .content .header nav a:not(:last-child):After {
    content: ' / ';
    margin: 0 3px 0 1px;
    color: #b4b4b4;
}

.service-details-container .content .header nav a:not(:last-child):hover {
    color: #000;
}

.service-details-container .features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.service-details-container .features ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

.service-details-container .features ul li > span {
    font-size: 14px;
    color: #353535;
}

.service-details-container .features ul li > span:first-child {
    width: 90px;
}

.service-details-container .content .location {
    font-weight: 500;
}

.service-details-container .content .meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.service-details-container .content .meta > div {
    width: 50%;
}

.service-details-container .content .meta .meta-title {
    font-weight: 500;
    margin-bottom: 10px;
}

.service-details-container .service-author-card .person-card {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
    margin-bottom: 10px;
}

.service-details-container .service-author-card .person-card .avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    font-size: 25px;
    font-weight: bolder;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}
.service-details-container .service-author-card .person-card .avatar img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.service-details-container .service-author-card .person-card .name {
    font-weight: 500;
    margin-bottom: 0;
}

.service-details-container .service-author-card .person-card .info {
    flex: 1;
}

.service-details-container .service-author-card .person-card .stars {
    margin: 0;
    font-size: 12px;
}

.service-details-container .service-author-card .person-card .stars-label {
    font-size: 12px;
    color: #3e3e3e;
}

.service-details-container .service-author-card .phone {
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 20px;
    color: #2196f3;
}

.service-details-container .service-author-card .actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-beetween;
    gap: 5px;
}

.service-details-container .service-author-card .actions a {
    display: block;
    text-decoration: none;
    background: #eee;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    color: #5a5a5a;
    transition: 300mS;
    font-weight: 500;
    font-size: 14px;
    width: calc(50% - 3px);
}

.service-details-container .service-author-card .actions a:first-child {
    width: 100%;
}

.service-details-container .service-author-card .actions a:hover {
    background: #2196f3;
    color: #fff;
}

.service-details-description {
    margin-top: 30px;
}

.service-details-description .body {
    padding: 15px;
    background: #fff;
    border-radius: 0 5px 5px 5px;
    min-height: 50px;
}

.service-details-description .description-title {
    background: #fff;
    margin: 0;
    display: inline-block;
    padding: 15px;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
}

.service-details-description .body .no-body {
    font-style: italic;
    color: #646464;
}

.service-details-container .content .contacts-info {
    margin-top: 20px;
    margin-bottom: 3px;
    font-size: 14px;
    color: #565656;
}

.service-item-card .image .warning-text {
    position: absolute;
    left: 10px;
    top: 01px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.avatar-container {
    text-align: center;
}

.avatar-container .preview {
    position: relative;
    width: 100%;
    text-align: center;
    max-width: 150px;
    margin: 0 auto 15px 0;
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.avatar-container .preview span.bi {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.avatar-container .preview span:not(.bi) {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    opacity: 0;
    transition: 300ms;
}

.avatar-container .preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid #fff;
}

.avatar-container .preview:Hover span:not(.bi) {
    opacity: 1;
}

.avatar-container .rules {
    font-size: 14px;
    font-style: italic;
}
