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

:root {
    --primary-color: #26667F;
    --secondary-color: #67C090;
    --tertiary-color: #124170;
    --light-color: #DDF4E7;
    --white: #FFFFFF;
    --dark-color: #2C3E50;
    --gray: #6C757D;
    --border-color: #DEE2E6;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem
}

.company-name {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1
}

.company-slogan {
    font-weight: 300;
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 0;
    white-space: nowrap
}

.logo-link,
.logo-link:link,
.logo-link:visited,
.logo-link:hover,
.logo-link:focus,
.logo-link:active {
    text-decoration: none !important;
    color: inherit;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important
}

.logo-link {
    display: block;
    cursor: pointer
}

.logo-link .company-name,
.logo-link .company-slogan {
    transition: none !important
}

.mobile-logo .logo-link {
    display: block
}

.mobile-logo .logo-link .company-name,
.mobile-logo .logo-link .company-slogan {
    transition: none !important
}

.header-main {
    background: var(--white);
    box-shadow: 0 2px 15px rgb(38 102 127 / .1);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 3px solid var(--light-color);
    transition: all .3s ease;
    min-height: 80px
}

.header-main.scrolled {
    background: rgb(255 255 255 / .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgb(38 102 127 / .15)
}

.logo {
    display: flex;
    flex-direction: column
}

.contact-info .whatsapp-btn {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    transition: all .3s ease;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.contact-info .whatsapp-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(103 192 144 / .3)
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: .25rem
}

.nav-menu li {
    position: relative
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    padding: .50rem .65rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all .3s ease;
    white-space: nowrap;
    font-size: 1rem;
    gap: .50rem
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(103 192 144 / .3)
}

.nav-menu>li>a i {
    font-size: .875rem;
    width: 16px;
    text-align: center
}

.dropdown {
    position: relative
}

.dropdown-toggle {
    cursor: pointer
}

.dropdown-toggle .fa-chevron-down {
    font-size: .75rem;
    transition: transform .3s ease
}

.dropdown.active .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgb(38 102 127 / .15);
    list-style: none;
    padding: .5rem 0;
    margin: .5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu li {
    margin: 0
}

.dropdown-menu a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 400;
    transition: all .3s ease;
    border-radius: 0;
    font-size: .875rem
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px)
}

.hamburger-menu {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    border-radius: 6px;
    padding: 3px;
    transition: all .3s ease;
    margin-left: auto
}

.hamburger-menu:hover {
    background: var(--light-color)
}

.hamburger-menu span {
    width: 22px;
    height: 2.5px;
    background: var(--primary-color);
    margin: 2.5px 0;
    transition: .3s;
    border-radius: 2px
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
    background: var(--tertiary-color)
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
    background: var(--tertiary-color)
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(350px, 90vw);
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right .4s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: -5px 0 25px rgb(38 102 127 / .2);
    border-left: 3px solid var(--light-color)
}

.mobile-nav.active {
    right: 0
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18 65 112 / .7);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    backdrop-filter: blur(3px)
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible
}

.nav-content {
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%)
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

.nav-close:hover {
    background: var(--light-color);
    color: var(--primary-color)
}

.mobile-logo {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 2px solid var(--light-color);
    margin-bottom: 2rem
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.mobile-nav-menu li {
    margin-bottom: .5rem
}

.mobile-nav-menu>li>a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 12px;
    transition: all .3s ease;
    font-weight: 500;
    border: 2px solid #fff0;
    gap: 1rem
}

.mobile-nav-menu>li>a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateX(5px);
    border-color: var(--secondary-color)
}

.mobile-nav-menu>li>a i {
    width: 20px;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center
}

.mobile-nav-menu>li>a:hover i {
    color: #fff
}

.mobile-dropdown {
    position: relative
}

.mobile-dropdown-toggle {
    cursor: pointer;
    justify-content: space-between !important
}

.mobile-dropdown-toggle .dropdown-arrow {
    transition: transform .3s ease;
    color: var(--secondary-color);
    font-size: 1rem
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg)
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
    border: 2px solid #fff0
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
    border-color: var(--secondary-color)
}

.mobile-dropdown-menu a {
    display: block;
    padding: .75rem 1rem .75rem 3.5rem;
    font-size: .9rem;
    font-weight: 400;
    color: var(--dark-color);
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 0
}

.mobile-dropdown-menu a:hover {
    background: var(--primary-color);
    color: #fff
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color)
}

body.nav-open {
    overflow: hidden
}

.breadcrumb-section {
    background: var(--light-color);
    padding: 1rem 0;
    border-bottom: 1px solid rgb(103 192 144 / .3)
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-weight: 500
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.breadcrumb-item a:hover {
    color: var(--tertiary-color)
}

.breadcrumb-item.active {
    color: var(--tertiary-color);
    font-weight: 600
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary-color);
    font-weight: 600
}

.hero-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgb(103 192 144 / .1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgb(38 102 127 / .1) 0%, transparent 50%);
    pointer-events: none
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(18 65 112 / .1);
    position: relative;
    z-index: 1
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 350px
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    z-index: 1
}

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

.hero-main-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgb(38 102 127 / .2);
    border: 3px solid var(--light-color);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hero-image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 3
}

.hero-image-container:hover .hero-image-nav {
    opacity: 1
}

.hero-nav-btn {
    background: rgb(38 102 127 / .8);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(10px)
}

.hero-nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1)
}

.hero-image-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / .5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all .3s ease
}

.hero-dot.active {
    background: #67C090;
    transform: scale(1.2)
}

.hero-dot:hover {
    background: #fff
}

.btn {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    padding: .875rem 2.5rem;
    transition: all .3s ease;
    border: 2px solid #fff0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    gap: .5rem;
    cursor: pointer
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .2), transparent);
    transition: left .5s
}

.btn:hover::before {
    left: 100%
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgb(38 102 127 / .3)
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(103 192 144 / .4)
}

.btn-outline-primary {
    background: #fff0;
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(38 102 127 / .3)
}

.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 5px 15px rgb(37 211 102 / .3)
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(37 211 102 / .4);
    color: #fff
}

.btn-block {
    width: 100%
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem
}

.btn-sm {
    padding: .5rem 1.5rem;
    font-size: .875rem
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
    position: relative;
    text-align: center
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgb(103 192 144 / .2) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgb(221 244 231 / .1) 0%, transparent 50%);
    pointer-events: none
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgb(18 65 112 / .3);
    position: relative;
    z-index: 1
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0;
    opacity: .9;
    position: relative;
    z-index: 1
}

.services-detail {
    background: #fff
}

.service-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgb(38 102 127 / .1);
    border: 2px solid var(--light-color);
    height: 100%;
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform .4s ease
}

.service-detail-card:hover::before {
    transform: scaleX(1)
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgb(38 102 127 / .15);
    border-color: var(--secondary-color)
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgb(103 192 144 / .3);
    transition: all .3s ease;
    position: relative
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 12px 30px rgb(103 192 144 / .4)
}

.service-detail-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all .3s ease
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--primary-color)
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 20px;
    font-size: 1.1rem;
    flex-shrink: 0
}

.service-features li:hover i {
    color: var(--primary-color);
    transform: scale(1.2)
}

.process-section {
    background: var(--light-color);
    position: relative
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: .5;
    pointer-events: none
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgb(38 102 127 / .1);
    border: 2px solid rgb(103 192 144 / .2);
    transition: all .4s ease;
    height: 100%;
    position: relative;
    overflow: hidden
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(103 192 144 / .1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none
}

.process-step:hover::before {
    opacity: 1
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(38 102 127 / .15);
    border-color: var(--secondary-color)
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgb(103 192 144 / .4);
    transition: all .3s ease
}

.process-step:hover .process-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgb(103 192 144 / .6)
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-color), #fff);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all .4s ease;
    position: relative
}

.process-step:hover .process-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgb(103 192 144 / .4)
}

.process-step h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
    transition: color .3s ease
}

.process-step:hover h5 {
    color: var(--primary-color)
}

.process-step p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
    transition: color .3s ease
}

.process-step:hover p {
    color: var(--dark-color)
}

@media (min-width:992px) {
    .process-section .row {
        position: relative
    }

    .process-section .row::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        z-index: 1;
        border-radius: 1px
    }

    .process-step {
        position: relative;
        z-index: 2
    }
}

@keyframes serviceDetailFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

@keyframes processStepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.9)
    }

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

.service-detail-card.animate-in {
    animation: serviceDetailFadeIn .8s ease forwards
}

.process-step.animate-in {
    animation: processStepFadeIn .6s ease forwards
}

@media (max-width:991.98px) {
    .page-title {
        font-size: 2.5rem
    }

    .page-subtitle {
        font-size: 1.1rem
    }

    .service-detail-card {
        padding: 2rem;
        margin-bottom: 2rem
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem
    }

    .service-detail-content h3 {
        font-size: 1.6rem
    }

    .process-step {
        padding: 1.5rem;
        margin-bottom: 2rem
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem
    }

    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -12px;
        right: 15px
    }
}

@media (max-width:768px) {
    .page-title {
        font-size: 2rem
    }

    .page-subtitle {
        font-size: 1rem
    }

    .service-detail-card {
        padding: 1.5rem
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem
    }

    .service-detail-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem
    }

    .service-features li {
        font-size: .95rem;
        margin-bottom: .75rem
    }

    .process-step {
        padding: 1.25rem
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 1.5rem auto 1rem
    }

    .process-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -10px;
        right: 10px
    }

    .process-step h5 {
        font-size: 1.2rem
    }

    .process-step p {
        font-size: .95rem
    }
}

@media (max-width:576px) {
    .page-header {
        padding: 3rem 0
    }

    .page-title {
        font-size: 1.75rem
    }

    .page-subtitle {
        font-size: .95rem
    }

    .service-detail-card {
        padding: 1.25rem
    }

    .service-detail-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border-radius: 15px
    }

    .service-detail-content h3 {
        font-size: 1.3rem
    }

    .process-step {
        padding: 1rem
    }

    .process-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem
    }

    .process-number {
        width: 28px;
        height: 28px;
        font-size: .9rem;
        top: -8px;
        right: 8px
    }

    .process-step h5 {
        font-size: 1.1rem
    }

    .process-step p {
        font-size: .9rem
    }
}

@media (prefers-contrast:high) {

    .service-detail-card,
    .process-step {
        border-width: 3px
    }

    .service-features li i {
        font-weight: 900
    }
}

@media (prefers-reduced-motion:reduce) {

    .service-detail-card,
    .process-step,
    .service-detail-icon,
    .process-icon,
    .process-number,
    .service-features li {
        transition: none
    }

    .service-detail-card.animate-in,
    .process-step.animate-in {
        animation: none;
        opacity: 1;
        transform: none
    }
}

@media print {
    .page-header {
        background: #f8f9fa !important;
        color: #000 !important
    }

    .service-detail-card,
    .process-step {
        box-shadow: none !important;
        border: 1px solid #ddd !important
    }

    .service-detail-icon,
    .process-icon,
    .process-number {
        background: #f8f9fa !important;
        color: #000 !important;
        border: 1px solid #ddd !important
    }
}

.service-card,
.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgb(38 102 127 / .1);
    transition: all .4s ease;
    height: 100%;
    border: 2px solid var(--light-color);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform .3s ease
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgb(38 102 127 / .2);
    border-color: var(--secondary-color)
}

.service-icon,
.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgb(103 192 144 / .3);
    transition: all .3s ease
}

.service-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color))
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color))
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 30px rgb(103 192 144 / .4)
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color))
}

.service-card h5,
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
    font-size: 1.4rem
}

.service-card p,
.feature-card p {
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.1rem
}

.gallery-section {
    background: var(--light-color)
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(38 102 127 / .1);
    transition: all .3s ease;
    cursor: pointer;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s ease forwards
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(38 102 127 / .2)
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid #fff0;
    border-radius: 15px;
    transition: border-color .3s ease;
    pointer-events: none
}

.gallery-item:hover::after {
    border-color: var(--secondary-color)
}

.gallery-img-large,
.gallery-img-medium,
.gallery-img-small {
    width: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.gallery-img-large {
    height: 350px
}

.gallery-img-medium {
    height: 280px
}

.gallery-img-small {
    height: 250px
}

.gallery-item:hover .gallery-img-large,
.gallery-item:hover .gallery-img-medium,
.gallery-item:hover .gallery-img-small {
    transform: scale(1.05)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(38 102 127 / .8), rgb(18 65 112 / .8));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    backdrop-filter: blur(2px)
}

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

.gallery-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform .3s ease
}

.gallery-item:hover .gallery-content {
    transform: translateY(0)
}

.gallery-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff
}

.gallery-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #fff
}

.gallery-modal-content {
    background: rgb(18 65 112 / .95);
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px)
}

.gallery-modal-content .modal-header,
.gallery-modal-content .modal-footer {
    background: #fff0;
    border-color: rgb(255 255 255 / .2)
}

.gallery-modal-content .modal-title {
    color: #fff;
    font-weight: 600
}

.gallery-modal-image {
    max-height: 70vh;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .3)
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

#loadMoreBtn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all .3s ease
}

#loadMoreBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(38 102 127 / .3)
}

.masonry-grid {
    column-gap: 1rem
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px)
}

.masonry-animate {
    animation: masonryFadeIn .6s ease forwards
}

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

.gallery-group {
    opacity: 0;
    transform: translateY(30px)
}

.gallery-group-animate {
    animation: galleryGroupFadeIn .8s ease forwards
}

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

.gallery-col {
    transition: transform .3s ease
}

.gallery-col:hover {
    transform: translateY(-8px)
}

.gallery-grid-img {
    border-radius: 15px;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgb(38 102 127 / .1);
    width: 100%;
    height: auto;
    object-fit: cover
}

.gallery-item:hover .gallery-grid-img {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgb(38 102 127 / .2)
}

.gallery-group:not(:last-child) {
    border-bottom: 2px solid rgb(103 192 144 / .2);
    padding-bottom: 2rem
}

.modal-footer .text-light {
    font-weight: 500;
    font-size: 1rem
}

.image-type-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: .25rem .5rem;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px)
}

.image-type-badge.landscape {
    background: rgb(103 192 144 / .9)
}

.image-type-badge.portrait {
    background: rgb(38 102 127 / .9)
}

.quote-form-wrapper,
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgb(38 102 127 / .1);
    border: 2px solid var(--light-color)
}

.form-label {
    font-weight: 600;
    color: var(--tertiary-color);
    margin-bottom: .75rem;
    font-size: 1rem
}

.form-control {
    font-family: 'Exo 2', sans-serif;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: .875rem 1.25rem;
    font-weight: 400;
    transition: all .3s ease;
    background: #fff;
    font-size: 1rem
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .2rem rgb(103 192 144 / .25);
    background: var(--light-color);
    outline: none
}

.form-control.is-valid {
    border-color: var(--secondary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2367C090' d='m2.3 6.73.94-.94 1.79 1.79 3.58-3.58.94.94L4.23 10.05z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid {
    border-color: var(--danger);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 0.4 0.4M6.2 7.4l0.4-0.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgb(37 211 102 / .4);
    z-index: 999;
    transition: all .3s ease;
    animation: pulse 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 12px 35px rgb(37 211 102 / .6);
    animation: none
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgb(37 211 102 / .4)
    }

    50% {
        box-shadow: 0 8px 25px rgb(37 211 102 / .4), 0 0 0 10px rgb(37 211 102 / .1), 0 0 0 20px rgb(37 211 102 / .1)
    }

    100% {
        box-shadow: 0 8px 25px rgb(37 211 102 / .4)
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 998;
    box-shadow: 0 6px 20px rgb(103 192 144 / .4);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(38 102 127 / .5)
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible
}

.why-us-section {
    background: var(--light-color);
    padding: 5rem 0
}

.team-section {
    padding: 5rem 0
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    position: relative;
    overflow: hidden;
    padding: 5rem 0
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgb(221 244 231 / .1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgb(221 244 231 / .1) 0%, transparent 50%)
}

.stat-item {
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
    text-align: center
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .3);
    position: relative
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
    color: var(--light-color)
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-color);
    text-shadow: 1px 1px 2px rgb(0 0 0 / .3)
}

.reviews-section {
    padding: 5rem 0
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgb(38 102 127 / .1);
    height: 100%;
    border: 2px solid var(--light-color);
    transition: all .3s ease;
    position: relative
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
    opacity: .3
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(38 102 127 / .15);
    border-color: var(--secondary-color)
}

.review-stars {
    color: gold;
    margin-bottom: 1.5rem;
    font-size: 1.3rem
}

.review-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.review-author {
    border-top: 2px solid var(--light-color);
    padding-top: 1rem
}

.review-author strong {
    color: var(--tertiary-color);
    display: block;
    font-weight: 600;
    font-size: 1.1rem
}

.review-author span {
    color: var(--secondary-color);
    font-size: .9rem;
    font-weight: 500
}

.faq-section {
    background: var(--light-color);
    padding: 5rem 0
}

.accordion-item {
    border: 2px solid var(--light-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgb(38 102 127 / .1)
}

.accordion-button {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    background: #fff;
    border: none;
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    color: var(--tertiary-color);
    transition: all .3s ease;
    position: relative
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: none
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2326667F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform .3s ease
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg)
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: var(--light-color);
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    border-top: 2px solid rgb(103 192 144 / .2)
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgb(38 102 127 / .1);
    transition: all .4s ease;
    text-align: center;
    border: 2px solid var(--light-color)
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgb(38 102 127 / .2);
    border-color: var(--secondary-color)
}

.team-image {
    overflow: hidden;
    position: relative
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1
}

.team-card:hover .team-image::before {
    opacity: .3
}

.team-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease
}

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

.team-info {
    padding: 2rem 1.5rem;
    background: #fff
}

.team-info h5 {
    color: var(--tertiary-color);
    margin-bottom: .5rem;
    font-weight: 700
}

.team-info p {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: .25rem
}

.footer-main {
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative
}

.footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgb(221 244 231 / .1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgb(221 244 231 / .1) 0%, transparent 50%)
}

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

.footer-widget h5,
.footer-widget h6 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700
}

.footer-widget p {
    color: var(--light-color);
    font-weight: 300;
    line-height: 1.7
}

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

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 300;
    transition: all .3s ease;
    display: flex;
    align-items: center
}

.footer-links a::before {
    content: '→';
    margin-right: .5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all .3s ease;
    color: var(--secondary-color)
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0)
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px)
}

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

.footer-contact li {
    margin-bottom: 1rem;
    color: var(--light-color);
    font-weight: 300;
    display: flex;
    align-items: center
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 20px;
    font-size: 1.1rem
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgb(255 255 255 / .1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / .2)
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgb(103 192 144 / .4);
    color: #fff
}

.quote-section {
    background: #fff;
    padding: 5rem 0
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--light-color)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color))
}

::selection {
    background: var(--secondary-color);
    color: #fff
}

::-moz-selection {
    background: var(--secondary-color);
    color: #fff
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1
    }

    to {
        transform: translateX(100%);
        opacity: 0
    }
}

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

@keyframes loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.text-primary {
    color: var(--primary-color) !important
}

.text-secondary {
    color: var(--secondary-color) !important
}

.text-tertiary {
    color: var(--tertiary-color) !important
}

.bg-primary {
    background-color: var(--primary-color) !important
}

.bg-secondary {
    background-color: var(--secondary-color) !important
}

.bg-light-custom {
    background-color: var(--light-color) !important
}

.border-primary {
    border-color: var(--primary-color) !important
}

.border-secondary {
    border-color: var(--secondary-color) !important
}

.d-mobile-only {
    display: none !important
}

.d-desktop-only {
    display: block !important
}

@media print {

    .hamburger-menu,
    .whatsapp-float,
    .scroll-to-top,
    .mobile-nav,
    .nav-overlay,
    .contact-info .whatsapp-btn {
        display: none !important
    }

    .header-main {
        position: static;
        box-shadow: none;
        border-bottom: 2px solid var(--border-color)
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000
    }

    .btn {
        display: none
    }

    .service-card,
    .feature-card,
    .team-card,
    .review-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border-color)
    }

    .hero-section {
        background: none !important;
        padding: 2rem 0
    }

    .stats-section {
        background: none !important;
        color: #000
    }

    .stat-number,
    .stat-label {
        color: #000
    }

    .footer-main {
        background: none !important;
        color: #000;
        border-top: 2px solid var(--border-color)
    }

    .gallery-section,
    .gallery-modal {
        display: none !important
    }
}

@media (prefers-contrast:high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #008000;
        --tertiary-color: #000040;
        --light-color: #F0F8FF;
        --border-color: #808080
    }

    .service-card,
    .feature-card,
    .team-card,
    .review-card,
    .btn {
        border-width: 3px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }

    .whatsapp-float {
        animation: none
    }

    .service-card:hover,
    .feature-card:hover,
    .team-card:hover,
    .review-card:hover {
        transform: none
    }
}

@media (max-width:991.98px) {
    .main-navigation {
        display: none
    }

    .company-name {
        font-size: 1.6rem
    }

    .company-slogan {
        font-size: .8rem
    }

    .hero-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 2.2rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch
    }

    .hero-buttons .btn {
        margin-bottom: 1rem;
        text-align: center
    }

    .quote-form-wrapper,
    .contact-form-wrapper {
        padding: 2rem 1.5rem
    }

    .hero-section {
        padding: 3rem 0
    }

    .mobile-nav {
        width: 100%
    }

    .hamburger-menu {
        margin-right: 0
    }

    .d-mobile-only {
        display: block !important
    }

    .d-desktop-only {
        display: none !important
    }

    .gallery-img-large {
        height: 280px
    }

    .gallery-img-medium {
        height: 240px
    }

    .gallery-img-small {
        height: 220px
    }

    .gallery-content i {
        font-size: 2.5rem
    }

    .gallery-content p {
        font-size: 1rem
    }

    .gallery-modal-image {
        max-height: 70vh
    }

    .gallery-grid-img {
        height: 250px !important
    }

    .hero-main-image {
        max-height: 400px
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px
    }

    .hero-dot {
        width: 10px;
        height: 10px
    }
}

@media (max-width:768px) {
    .contact-info {
        display: none
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-description {
        font-size: 1.1rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .service-card {
        margin-bottom: 2rem
    }

    .hero-buttons .btn {
        font-size: .95rem;
        padding: .75rem 2rem
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem
    }

    .gallery-img-large,
    .gallery-img-small {
        height: 200px
    }

    .gallery-content i {
        font-size: 2rem;
        margin-bottom: .5rem
    }

    .gallery-content p {
        font-size: .9rem
    }

    .gallery-modal-image {
        max-height: 60vh
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem
    }

    .service-card h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem
    }

    .service-card p {
        font-size: 1rem
    }

    .gallery-grid-img {
        height: 200px !important
    }

    .hero-main-image {
        max-height: 300px
    }

    .hero-image-nav {
        padding: 0 .5rem
    }

    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: .875rem
    }
}

@media (max-width:576px) {
    .company-name {
        font-size: 1.4rem
    }

    .company-slogan {
        font-size: .75rem
    }

    .hero-title {
        font-size: 1.8rem
    }

    .section-title {
        font-size: 1.6rem
    }

    .quote-form-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem 1rem
    }

    .service-card {
        padding: 1.5rem
    }

    .hero-section {
        padding: 2rem 0
    }

    .hero-main-image {
        max-height: 250px
    }

    .service-img {
        height: 150px
    }

    .gallery-img-large,
    .gallery-img-small {
        height: 180px
    }

    .gallery-content i {
        font-size: 1.8rem
    }

    .gallery-grid-img {
        height: 180px !important
    }

    .hero-dot {
        width: 8px;
        height: 8px
    }
}

@media (max-width:480px) {
    .company-name {
        font-size: 1.2rem
    }

    .company-slogan {
        font-size: .7rem
    }

    .hamburger-menu {
        width: 32px;
        height: 32px
    }

    .hamburger-menu span {
        width: 18px;
        height: 2px
    }

    .hero-title {
        font-size: 1.5rem
    }

    .section-title {
        font-size: 1.4rem
    }

    .hero-buttons .btn {
        padding: .6rem 1.5rem;
        font-size: .875rem
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 15px;
        right: 15px
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: .9rem;
        bottom: 80px;
        right: 15px
    }
}

@media (max-width:400px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px
    }

    .hamburger-menu {
        width: 28px;
        height: 28px
    }

    .hamburger-menu span {
        width: 16px;
        height: 1.5px;
        margin: 2px 0
    }

    .company-name {
        font-size: 1.1rem
    }

    .company-slogan {
        font-size: .65rem
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 1rem
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem
    }

    .section-title {
        font-size: 1.2rem
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem
    }

    .service-card {
        padding: 1rem
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    .service-img {
        height: 120px
    }

    .gallery-img-large,
    .gallery-img-small {
        height: 150px
    }

    .quote-form-wrapper {
        padding: 1rem
    }

    .btn {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 10px;
        right: 10px
    }

    .scroll-to-top {
        width: 35px;
        height: 35px;
        font-size: .8rem;
        bottom: 70px;
        right: 10px
    }
}

@media (max-width:350px) {
    .company-name {
        font-size: 1rem
    }

    .company-slogan {
        font-size: .6rem
    }

    .hero-title {
        font-size: 1.2rem
    }

    .section-title {
        font-size: 1.1rem
    }

    .service-card h5 {
        font-size: 1.1rem
    }

    .service-card p {
        font-size: .9rem
    }
}

.footer-links a i {
    margin-right: .75rem;
    width: 16px;
    flex-shrink: 0;
    font-size: .9rem
}

.footer-links.small {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links.small li {
    margin-bottom: .4rem
}

.footer-links.small a {
    color: rgb(255 255 255 / .7);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    font-size: .9rem;
    transition: all .3s ease;
    padding: .2rem 0
}

.footer-links.small a:hover {
    color: #F4911E;
    text-decoration: none !important
}

.footer-links.small a i {
    margin-right: .6rem;
    width: 14px;
    flex-shrink: 0;
    font-size: .8rem
}

.footer-links a.active {
    color: #F4911E;
    font-weight: 600
}

@media (max-width:768px) {

    .footer-links a i,
    .footer-links.small a i {
        margin-right: .5rem
    }
}

.footer-main a {
    text-decoration: none !important
}

.footer-main a:hover {
    text-decoration: none !important
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0
}

.header-main .main-navigation .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease
}

.header-main .main-navigation .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #26667F;
    font-weight: 500
}

.hero-feature i {
    color: #F4911E;
    font-size: 1.2rem
}

.services-section {
    position: relative
}

.services-cta {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgb(0 0 0 / .1);
    text-align: center;
    border: 2px solid #F4911E
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: #fff;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 500;
    text-decoration: none
}

.filter-btn:hover,
.filter-btn.active {
    background: #26667F;
    color: #fff;
    border-color: #26667F;
    transform: translateY(-2px)
}

.primary-area-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    border: 2px solid #F4911E;
    transition: all .3s ease;
    height: 100%
}

.primary-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(244 145 30 / .2)
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4911E 0%, #e68a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.area-icon i {
    font-size: 1.5rem;
    color: #fff
}

.city-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.city-title {
    color: #26667F;
    border-bottom: 2px solid #F4911E;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem
}

.area-count {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400
}

.area-type-title {
    color: #F4911E;
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.area-list {
    list-style: none;
    padding: 0
}

.area-item {
    padding: .75rem 0;
    border-bottom: 1px solid #e9ecef
}

.area-item:last-child {
    border-bottom: none
}

.area-item.primary {
    background: linear-gradient(90deg, rgb(244 145 30 / .1) 0%, rgb(244 145 30 / .05) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: .5rem;
    font-weight: 600;
    border-bottom: none
}

.area-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* wrap kaldır */
}

.area-name {
    flex-grow: 1;
    margin-left: .5rem
}

.primary-badge {
    background: #F4911E;
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 15px;
    font-size: .75rem;
    margin-left: 1rem
}

.area-desc {
    padding-left: 1.5rem;
    font-style: italic
}

.contact-card,
.features-card,
.stats-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    margin-bottom: 2rem
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    padding: .5rem 0
}

.feature-list i {
    color: #28a745;
    margin-right: .5rem
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid #e9ecef
}

.stat-row:last-child {
    border-bottom: none
}

.city-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    transition: all .3s ease;
    height: 100%
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(0 0 0 / .15)
}

.city-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #26667F 0%, #1a4d61 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.city-icon i {
    font-size: 2rem;
    color: #fff
}

.intercity-note {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

@media (max-width:768px) {
    .city-section {
        padding: 1rem
    }

    .primary-area-card,
    .city-card {
        margin-bottom: 1.5rem
    }

    .area-item.primary {
        padding: .75rem
    }

    .area-info {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem
    }

    .primary-badge {
        margin-left: 0
    }
}

.contact-header {
    background: linear-gradient(135deg, #26667F 0%, #1a4d61 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 400px
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23f4911e" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>')
}

.contact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2
}

.emergency-contact {
    background: rgb(255 255 255 / .95);
    color: #495057;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2)
}

.emergency-header {
    color: #dc3545;
    margin-bottom: 1rem
}

.emergency-header i {
    font-size: 2rem;
    margin-bottom: .5rem;
    display: block
}

.form-header {
    text-align: center;
    margin-bottom: 2rem
}

.form-header h3 {
    color: #26667F;
    font-weight: 700;
    margin-bottom: 1rem
}

.input-group {
    margin-bottom: 0;
    width: 100%
}

.input-group-text {
    background: linear-gradient(135deg, #F4911E 0%, #e68a00 100%);
    color: #fff;
    border: none;
    width: 50px;
    justify-content: center;
    border-radius: 10px 0 0 10px
}

.contact-form-wrapper {
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    flex: 0 0 auto;
    white-space: nowrap
}

.quick-quote-card {
    background: linear-gradient(135deg, #F4911E 0%, #e68a00 100%);
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgb(244 145 30 / .3);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box
}

.quick-quote-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(255 255 255 / .1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-10px) rotate(180deg)
    }
}

.quote-header {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.quote-header i {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    display: block;
    color: #fff;
    text-shadow: 0 2px 4px rgb(0 0 0 / .3)
}

.quote-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 2
}

.quick-quote-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    opacity: .95
}

.quote-actions {
    margin: 1.5rem 0;
    position: relative;
    z-index: 2
}

.quote-actions .btn {
    background: rgb(255 255 255 / .95);
    color: #F4911E;
    border: 2px solid rgb(255 255 255 / .8);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgb(0 0 0 / .2);
    width: 100%;
    display: block;
    text-decoration: none
}

.quote-actions .btn:hover {
    background: #fff;
    color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .3)
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2
}

.quote-features .feature-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    font-weight: 500;
    padding: .5rem 0
}

.quote-features .feature-item i {
    font-size: 1rem;
    color: #d4edda;
    background: rgb(255 255 255 / .2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgb(0 0 0 / .1);
    transition: all .3s ease;
    border: 2px solid #fff0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(0 0 0 / .15);
    border-color: #F4911E
}

.contact-item.primary-contact {
    border-color: #26667F;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)
}

.contact-item.whatsapp-contact {
    border-color: #25d366;
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%)
}

.phone-icon {
    background: linear-gradient(135deg, #26667F 0%, #1a4d61 100%)
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%)
}

.email-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%)
}

.address-icon {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%)
}

.time-icon {
    background: linear-gradient(135deg, #198754 0%, #157347 100%)
}

.contact-details {
    flex: 1;
    min-width: 0
}

.contact-details h6 {
    color: #26667F;
    font-weight: 600;
    margin-bottom: .5rem
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
    word-wrap: break-word
}

.contact-actions {
    margin-bottom: .5rem
}

.availability {
    color: #28a745;
    font-weight: 500;
    font-size: .9rem
}

.working-status {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .5rem
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block
}

.status-indicator.online {
    background: #28a745;
    animation: pulse 2s infinite
}

.status-text {
    color: #28a745;
    font-weight: 500;
    font-size: .9rem
}

.map-section {
    background: #f8f9fa;
    padding: 4rem 0
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    position: relative;
    width: 100%
}

.map-placeholder {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    position: relative
}

.map-content {
    text-align: center;
    color: #6c757d;
    padding: 2rem;
    max-width: 400px
}

.map-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #26667F;
    display: block
}

.service-areas-list {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgb(0 0 0 / .1);
    height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%
}

.service-areas-list h5 {
    color: #26667F;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0
}

.service-areas-list h5 i {
    color: #F4911E
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: .5rem;
    max-height: 250px
}

.areas-grid::-webkit-scrollbar {
    width: 6px
}

.areas-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.areas-grid::-webkit-scrollbar-thumb {
    background: #26667F;
    border-radius: 10px
}

.areas-grid::-webkit-scrollbar-thumb:hover {
    background: #1a4d61
}

.area-item {
    flex-shrink: 0;
    width: 100%
}

.area-item a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 10px;
    transition: all .3s ease;
    border: 1px solid #e9ecef;
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box
}

.area-item a:hover {
    background: #26667F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(38 102 127 / .3)
}

.area-item i {
    color: #F4911E;
    flex-shrink: 0;
    font-size: .8rem
}

.area-item a:hover i {
    color: #F4911E
}

@media (max-width:991.98px) {
    .service-areas-list {
        height: auto;
        margin-top: 2rem;
        max-height: 350px
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        max-height: 200px
    }

    .map-container {
        height: 300px;
        margin-bottom: 1rem
    }
}

@media (max-width:767.98px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 250px
    }

    .area-item a {
        padding: .6rem .8rem;
        font-size: .85rem;
        justify-content: center
    }

    .service-areas-list {
        padding: 1.5rem
    }

    .quick-quote-card {
        padding: 1.5rem;
        margin-top: 1.5rem
    }

    .quote-header i {
        font-size: 2rem
    }

    .quote-actions .btn {
        padding: .875rem 1.5rem;
        font-size: 1rem
    }

    .form-actions {
        flex-direction: column;
        align-items: center
    }

    .form-actions .btn {
        width: 100%;
        max-width: 300px
    }
}

@media (max-width:575.98px) {
    .contact-header {
        min-height: 350px;
        padding: 3rem 0
    }

    .emergency-contact {
        padding: 1.5rem;
        margin-top: 2rem
    }

    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1rem
    }

    .areas-grid {
        grid-template-columns: 1fr;
        max-height: 200px
    }

    .map-container {
        height: 250px
    }

    .service-areas-list h5 {
        font-size: 1.1rem;
        text-align: center
    }

    .form-control {
        font-size: 16px
    }
}

.faq-search {
    border-bottom: 1px solid #e9ecef
}

.search-box .input-group {
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    border-radius: 15px;
    overflow: hidden
}

.search-box .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem
}

.search-box .input-group-text {
    background: #F4911E;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem
}

.search-suggestions button {
    color: #26667F;
    text-decoration: none;
    border: none;
    background: none;
    font-size: .9rem
}

.search-suggestions button:hover {
    color: #F4911E;
    text-decoration: underline
}

.faq-categories {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: #fff;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 500;
    text-decoration: none
}

.category-btn:hover,
.category-btn.active {
    background: #26667F;
    color: #fff;
    border-color: #26667F;
    transform: translateY(-2px)
}

.faq-accordion {
    max-width: 100%
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all .3s ease;
    border: 2px solid #fff0
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgb(0 0 0 / .15);
    border-color: #F4911E
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    transition: all .3s ease;
    position: relative
}

.faq-question:hover {
    background: #f8f9fa
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.question-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F4911E 0%, #e68a00 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem
}

.question-text {
    flex: 1
}

.question-text h5 {
    color: #26667F;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-size: 1.2rem
}

.question-icon {
    flex-shrink: 0;
    color: #6c757d;
    font-size: 1.2rem;
    transition: transform .3s ease
}

.faq-answer {
    padding: 0 2rem 2rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa
}

.answer-content {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.answer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #26667F 0%, #1a4d61 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.answer-text {
    flex: 1;
    color: #495057;
    line-height: 1.7;
    font-size: 1rem
}

.answer-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem
}

.help-text {
    color: #6c757d;
    font-size: .9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.action-buttons {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.action-buttons .btn {
    font-size: .9rem
}

.rating-overview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2
}

.overall-rating {
    text-align: center
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #F4911E;
    line-height: 1
}

.rating-stars {
    font-size: 1.5rem;
    margin: .5rem 0
}

.rating-count {
    font-size: 1.1rem;
    opacity: .9
}

.rating-breakdown {
    min-width: 300px
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem
}

.rating-label {
    width: 60px;
    font-size: .9rem
}

.progress {
    flex: 1;
    height: 8px;
    background: rgb(255 255 255 / .2)
}

.rating-percentage {
    width: 40px;
    text-align: right;
    font-size: .9rem
}

.filters-section {
    border-bottom: 1px solid #e9ecef
}

.filters-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.filters-title h5 {
    color: #26667F;
    margin-bottom: 1.5rem;
    font-weight: 600
}

.filters-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem
}

.filter-label {
    font-weight: 600;
    color: #495057;
    margin: 0
}

.rating-filters,
.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.rating-filter,
.location-filter {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem 1rem;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all .3s ease;
    font-size: .9rem
}

.rating-filter:hover,
.location-filter:hover,
.rating-filter.active,
.location-filter.active {
    background: #26667F;
    color: #fff;
    border-color: #26667F;
    text-decoration: none
}

.reviews-grid {
    display: grid;
    gap: 2rem
}

.sidebar {
    position: sticky;
    top: 2rem
}

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    margin-bottom: 2rem;
    overflow: hidden
}

.sidebar-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef
}

.sidebar-card .card-header h5 {
    margin: 0;
    color: #26667F;
    font-weight: 600
}

.sidebar-card .card-body {
    padding: 1.5rem
}

.cta-buttons .btn {
    margin-bottom: .5rem
}

.recent-review {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem
}

.recent-review:last-child {
    border-bottom: none;
    margin-bottom: 0
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem
}

.recent-rating {
    font-size: .8rem
}

.recent-text {
    color: #6c757d;
    font-size: .9rem;
    margin-bottom: .5rem
}

.recent-date {
    font-size: .8rem
}

.contact-item i {
    width: 20px;
    color: #26667F
}

.contact-item a {
    color: #495057;
    text-decoration: none
}

.contact-item a:hover {
    color: #26667F
}

.area-badges .badge {
    margin: 0 .25rem;
    padding: .5rem 1rem
}

.content-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.advantage-list,
.service-list {
    list-style: none;
    padding: 0
}

.advantage-list li,
.service-list li {
    padding: .5rem 0;
    display: flex;
    align-items: center
}

.advantage-list i,
.service-list i {
    margin-right: .75rem;
    width: 20px
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    background: #26667F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem
}

.service-item .service-icon i {
    color: #fff;
    font-size: 1.25rem
}

.contact-widget,
.info-widget,
.related-widget {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.info-list {
    list-style: none;
    padding: 0
}

.info-list li {
    padding: .5rem 0;
    border-bottom: 1px solid #e9ecef
}

.info-list li:last-child {
    border-bottom: none
}

.related-list {
    list-style: none;
    padding: 0
}

.related-list li {
    margin-bottom: .5rem
}

.related-list a {
    color: #26667F;
    text-decoration: none;
    padding: .5rem 0;
    display: block
}

.related-list a:hover {
    color: #F4911E
}

.cta-section {
    background: linear-gradient(135deg, #26667F 0%, #1a4d61 100%)
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.col-lg-8,
.col-lg-4 {
    padding-left: 15px;
    padding-right: 15px
}

* {
    box-sizing: border-box
}

.contact-form-wrapper,
.quick-quote-card,
.contact-item {
    max-width: 100%;
    overflow: hidden
}

.area-item a:focus,
.quote-actions .btn:focus,
.contact-actions .btn:focus {
    outline: 2px solid #F4911E;
    outline-offset: 2px
}
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.mobile-quick-menu {
    display: flex;
    /* buradaki !important kaldır */
    justify-content: space-around;
    align-items: center;
    height: 60px;
    background: rgb(255 255 255 / .98);
    border-bottom: 2px solid var(--light-color, #DDF4E7);
    box-shadow: 0 2px 8px rgba(38, 102, 127, .1);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 1100;
    backdrop-filter: blur(8px);
}


@media (min-width:992px) {
    .mobile-quick-menu {
        display: none !important
    }
}

.quick-menu-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray, #666);
    padding: .4rem .2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 50px;
    flex: 1;
    max-width: 80px
}

.quick-menu-item:hover,
.quick-menu-item.active {
    color: var(--primary-color, #26667F) !important;
    background: var(--light-color, #DDF4E7);
    transform: translateY(-2px);
    text-decoration: none
}

.quick-menu-item i {
    font-size: 1.1rem;
    margin-bottom: .25rem;
    display: block
}

.quick-menu-item span {
    font-size: .7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
    display: block
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative
}

@media (max-width:991.98px) {
    .hamburger-menu {
        display: flex !important
    }
}

.hamburger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color, #26667F);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px)
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgb(0 0 0 / .1)
}

.mobile-nav.active {
    right: 0
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / .5);
    z-index: 1990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible
}

.nav-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray, #666);
    cursor: pointer;
    z-index: 10
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1
}

.mobile-nav-menu>li {
    margin: 0;
    border-bottom: 1px solid #eee
}

.mobile-nav-menu>li>a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--dark, #333);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease
}

.mobile-nav-menu>li>a:hover,
.mobile-nav-menu>li>a.active {
    background: var(--light-color, #DDF4E7);
    color: var(--primary-color, #26667F)
}

.mobile-nav-menu>li>a i {
    margin-right: .75rem;
    width: 20px;
    text-align: center
}

.mobile-dropdown {
    position: relative
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    color: var(--dark, #333);
    cursor: pointer
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: .8rem
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg)
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 400px
}

.mobile-dropdown-menu a {
    display: block;
    padding: .75rem 1rem .75rem 3rem;
    color: var(--gray, #666);
    text-decoration: none;
    font-size: .9rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease
}

.mobile-dropdown-menu a:hover {
    background: #fff;
    color: var(--primary-color, #26667F);
    padding-left: 3.25rem
}

body.nav-open {
    overflow: hidden !important
}

@media (max-width:991.98px) {
    .main-navigation {
        display: none !important;
    }

    .contact-info {
        display: none !important;
    }
}

@media (max-width:768px) {
    .mobile-quick-menu {
        bottom: 0;
        padding: .3rem 0;
    }
}

@media (max-width:576px) {
    .mobile-quick-menu {
        bottom: 0;
        padding: .3rem 0;
    }
}

/* Büyük ekranlarda mobil quick menu gizle */
@media (min-width: 992px) {
    .mobile-quick-menu {
        display: none !important;
    }
}

/* Desktop - sadece header kadar boşluk */
@media (min-width: 992px) {
    body {
        padding-top: 80px;
        /* sadece header */
    }
}

/* Tablet & Mobil - header + quick menu */
@media (max-width: 991.98px) {
    body {
        padding-top: 140px;
        /* header + quick menu */
        padding-bottom: 80px;
        /* quick menu kadar boşluk */
    }
}



.whatsapp-btn-mobile {
    font-size: .85rem !important;
    padding: .35rem .75rem !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: .4rem !important
}

.whatsapp-btn-mobile i {
    font-size: 1rem !important
}

.mobile-logo .company-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.mobile-logo .company-slogan {
    font-size: .85rem;
    color: #666;
    margin: 0
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / .15);
    background: rgb(0 0 0 / .15);
    padding: 10px 0;
    color: rgb(255 255 255 / .7);
    position: relative;
    z-index: 5
}

.footer-bottom a {
    color: #ffc107
}

.footer-bottom a:hover {
    color: #fff
}

.hero-dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}

@media (max-width: 991.98px) {
    .hero-section .row {
        flex-direction: column;
    }
    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    .hero-image-container {
        margin-top: 2rem; /* yazıdan sonra boşluk */
    }
}
/* Hero section mobil düzen */
@media (max-width: 991.98px) {
    .hero-row {
        flex-direction: column;
        /* alt alta */
    }

    .hero-content {
        text-align: center;
        /* mobilde ortala */
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 2rem;
        /* yazıdan sonra boşluk bırak */
    }
}