@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap);

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

html {
    font-family: "Poppins", sans-serif;
    --max-w: 1200px;
    --dp: 10px;
    --main-clr: #66b951;
    --main-clr-txt: #fff;
    --rounded-circle: 50%;
    --rounded-full: 999px;
    --secondary-clr: #00b7ff;
    --accent-clr: #00d9ff;
    --dark-text: #1a1a1a;
    --light-text: #3d3d3d;
    --light-bg: #f8f9fa;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}


.bido-container {
    width: 100%;
    max-width: var(--max-w);
    padding: 0 var(--px);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.container {
    transition: all 0.3s ease;
}

.px {
    padding-left: var(--px);
    padding-right: var(--px);
}

.h-100vh {
    min-height: 100vh;
}

/* Better spacing utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.col {
    flex: 1 0 0%;
    transition: all 0.3s ease;
}

a {
    color: var(--main-clr);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

a:hover {
    color: #66b951;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Spacing */
.dpy {
    padding-top: 5rem;
    padding-bottom: 100px;
}

/* Enhanced Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.img-hover-scale .img {
    overflow: hidden;
    display: flex;
    position: relative;
}

.img-hover-scale .img img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
}

.img-hover-scale:hover .img img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.home-sec-pr {
    gap: 1.5rem !important;
    margin-bottom: 2rem;
}

.home-sec-pr .card-box {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 25px;
    height: 320px;
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 122, 204, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.home-sec-pr .card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.home-sec-pr .card-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
    opacity: 1;
    transition: all 0.4s ease;
}

.home-sec-pr .card-box .content {
    position: relative;
    z-index: 2;
    width: 100%;
    transition: all 0.4s ease;
}

.home-sec-pr .card-box h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.home-sec-pr .card-box p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 1;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.home-sec-pr .card-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 122, 204, 0.25);
}

.home-sec-pr .card-box:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.home-sec-pr .card-box:hover::after {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.home-sec-pr .card-box:hover h4 {
    color: #ffffff;
    transform: translateX(5px);
}

.home-sec-pr .card-box:hover p {
    opacity: 1;
    transform: translateY(2px);
}


html:has(header.open-menu) {
    overflow: hidden;
}

/* HEADER CSS */
header {
    padding: 25px 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
    background-color: #fff;
}

html:has(.bd-entry) header {
    color: #fff;
    background-color: transparent;
}

header.move {
    top: -77px;
}

header.sticky {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 15px 25px -20px rgba(0, 0, 0, .1);
}

/* header > .t{ padding: 15px var(--dp);}
header > .t > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.t>div {
    display: flex;
    margin-bottom: 20px;
}

header>.t>div>div {
    flex: 1;
}

header>.t>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.t>div>.c .logo {
    color: inherit;
    height: 51px;
}

header>.t>div>.c .logo svg {
    height: 25px;
    fill: currentColor;
}

header>.t>div>.c .logo img {
    height: 100%;
}

header>.t>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* header > .b{ padding: 0 var(--dp) 15px;}
header > .b > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.b>div {
    display: flex;
}

header>.b>div>div {
    flex: 1;
}

header>.b>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.b>div>.c nav ul {
    gap: 35px;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

header>.b>div>.c nav ul li a {
    opacity: .75;
    font-size: 14px;
    color: inherit;
    white-space: nowrap;
    transition: all .2s ease;
    position: relative;
}

header>.b>div>.c nav ul li a::before {
    --size: 7px;
    opacity: 0;
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 5px);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--main-clr);
    transition: all .2s ease;
}

header>.b>div>.c nav ul li a.active::before {
    opacity: 1;
}

header>.b>div>.c nav ul li a:hover,
header>.b>div>.c nav ul li a.active {
    color: #66b951;
    opacity: 1;
}

header>.b>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

header .header-menu {
    overflow-y: auto;
    padding-bottom: 30px;
    background-color: rgba(250, 252, 255, 0.975);
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
}

header .header-menu {
    transform-origin: top center;
    transition: all .3s ease;
    opacity: 1;
    transform: scale(0) translateY(-50%);
    pointer-events: none;
}

header.open-menu .header-menu {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

header .header-menu>.t>div {
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b {
    height: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b>div {
    display: flex;
    justify-content: space-between;
}

header .header-menu>.b>div .l {
    width: 100%;
}

header .header-menu>.b>div .r {
    width: 100%;
    max-width: 300px;
}

header .header-menu>.b .top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.ghost-header {
    height: 106px;
}


/* ============================================
   MODERN FOOTER STYLES - Green Theme (#66b951)
   ============================================ */

footer.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    color: #e5e7eb;
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative Background Elements */
footer.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 185, 81, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 185, 81, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 185, 81, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

footer.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(102, 185, 81, 0.02) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(102, 185, 81, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--dp);
    position: relative;
    z-index: 2;
}

/* ===== MAIN FOOTER SECTION ===== */
.footer-main-section {
    position: relative;
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(102, 185, 81, 0.15);
}

.footer-wave-bg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 1;
}

.footer-wave-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

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

/* Brand Column */
.footer-brand-column {
    padding-right: 20px;
}

.footer-logo-section {
    margin-bottom: 20px;
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #66b951;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-brand-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #66b951, #7bc968);
    border-radius: 2px;
}

.footer-brand-tagline {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0;
    text-align: justify;
}

/* Social Media */
.footer-social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 185, 81, 0.1), rgba(102, 185, 81, 0.2));
    border: 2px solid rgba(102, 185, 81, 0.3);
    border-radius: 50%;
    color: #66b951;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #66b951;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 120%;
    height: 120%;
}

.social-link:hover {
    color: #ffffff;
    border-color: #66b951;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 185, 81, 0.3);
}

/* Column Titles */
.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #66b951;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links li a::before {
    margin-right: 8px;
    color: #66b951;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #66b951;
}

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

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: rgba(102, 185, 81, 0.05);
    border-left: 3px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 185, 81, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(102, 185, 81, 0.1);
    border-left-color: #66b951;
    transform: translateX(8px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(102, 185, 81, 0.15);
    border-radius: 50%;
    color: #66b951;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-text {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text {
    color: #ffffff;
}

/* ===== REGIONS SECTION ===== */
.footer-regions-section {
    width: 100%;
    background: rgba(102, 185, 81, 0.03);
    padding: 60px 0;
    border-bottom: 1px solid rgba(102, 185, 81, 0.15);
    position: relative;
}

.footer-regions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(102, 185, 81, 0.02) 20px,
            rgba(102, 185, 81, 0.02) 40px
        );
    pointer-events: none;
}

.regions-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 45px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    color: #66b951;
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.regions-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #66b951, #7bc968, #66b951);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(102, 185, 81, 0.3);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.region-group {
    overflow: hidden;
}

.region-group::before {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(102, 185, 81, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.region-group:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}


.region-city {
    font-size: 1.1rem;
    font-weight: 700;
    color: #66b951;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.city-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(102, 185, 81, 0.3));
}

.region-city::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #66b951;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.region-group:hover .region-city::after {
    width: 50px;
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.region-list li {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 20px;
}

.region-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    color: #66b951;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.region-list li:hover::before {
    transform: scale(1.2);
}

.region-list li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 4px;
    position: relative;
}

.region-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #66b951;
    transition: width 0.3s ease;
}

.region-list li a:hover {
    color: #66b951;
    padding-left: 8px;
}

.region-list li a:hover::after {
    width: 100%;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom-section {
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 30px 0;
    position: relative;
}

.footer-bottom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #66b951, transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright {
    margin: 0;
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-icon {
    color: #66b951;
    font-weight: bold;
    font-size: 1.1rem;
}

.company-highlight {
    color: #d1d5db;
    font-weight: 500;
    margin-left: 10px;
}

.powered-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.powered-text {
    font-weight: 300;
}

.baykus-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(102, 185, 81, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(102, 185, 81, 0.2);
    transition: all 0.3s ease;
}

.baykus-name {
    color: #66b951;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.powered-link:hover {
    color: #66b951;
}

.powered-link:hover .baykus-logo {
    background: rgba(102, 185, 81, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 185, 81, 0.2);
}

/* ============================================
   RESPONSIVE STYLES - Modern Footer
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    footer.footer-modern {
        margin-top: 60px;
    }

    .footer-main-section {
        padding: 50px 0 40px;
    }

    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-column {
        padding-right: 0;
    }

    .footer-brand-title::after,
    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-media,
    .footer-links {
        justify-content: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .contact-item {
        max-width: 350px;
        margin: 0 auto;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    footer.footer-modern {
        margin-top: 50px;
    }

    .footer-main-section {
        padding: 40px 0 30px;
    }

    .footer-content-grid {
        gap: 35px;
    }

    .footer-brand-title {
        font-size: 1.5rem;
    }

    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social-media {
        gap: 12px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .contact-item {
        padding: 12px 15px;
        max-width: 100%;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .footer-links li a {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .footer-regions-section {
        padding: 45px 0;
    }

    .regions-title {
        font-size: 1.2rem;
        margin-bottom: 35px;
        flex-direction: column;
        gap: 10px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .region-group {
        padding: 20px;
    }

    .region-city {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .region-list li {
        padding-left: 18px;
    }

    .region-list li a {
        font-size: 0.85rem;
    }

    .footer-bottom-section {
        padding: 25px 0;
    }

    .footer-bottom-content {
        gap: 15px;
    }

    .copyright {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .company-highlight {
        margin-left: 0;
    }

    .powered-link {
        font-size: 0.85rem;
    }

    .baykus-logo {
        padding: 5px 10px;
    }
}


.languages {
    display: flex;
    position: relative;
}

.languages>button {
    border: 1px solid currentColor;
    padding: 0;
    padding-left: 10px;
    gap: 10px;
    font-size: 10px;
    height: 24px;
    border-radius: var(--rounded-full);
    color: currentColor;
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
}

.languages>button>div {
    transform: translateX(1px);
    height: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languages>button>div svg {
    height: 15px;
    fill: currentColor;
}


.search-template-1 {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    position: relative;
}

.search-template-1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .2s ease;
    border-bottom: 1.5px solid var(--main-clr);
    width: 0%;
}

.search-template-1.v2::before {
    border-width: 1px;
}

.search-template-1.v2::before,
.search-template-1:hover::before,
.search-template-1:focus-within::before {
    width: 100%;
}

.search-template-1>button {
    color: inherit;
    border: none;
    outline: none;
    display: flex;
    background-color: transparent;
}

.search-template-1>button svg {
    height: 20px;
    fill: currentColor;
    transition: all .2s ease;
}

.search-template-1.v2>button svg,
.search-template-1:hover>button svg,
.search-template-1:focus-within>button svg {
    fill: var(--main-clr);
}

.search-template-1>input {
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    padding-left: 5px;
    padding-right: 10px;
    height: 35px;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.search-template-1>input::placeholder {
    color: inherit;
    opacity: .75;
}

.search-template-1.v2>input {
    color: var(--main-clr);
}

.search-template-1.v2>input::placeholder {
    color: var(--main-clr);
}


.samples {
    color: inherit;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.samples>span {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    line-height: 1;
}

.samples>.icon {
    position: relative;
    display: flex;
}

.samples>.icon svg {
    height: 20px;
    fill: currentColor;
}

.samples>.icon>small {
    --size: 16px;
    font-size: 10px;
    transform: translate(50%, -50%);
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--main-clr);
    color: var(--main-clr-txt);
    border-radius: var(--rounded-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
}


.menu-template-1 {
    position: relative;
}

.menu-template-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-template-1>ul {
    gap: 0px;
    max-width: 220px;
    width: 100%;
    border-right: 1px solid var(--main-clr);
    display: flex;
    flex-direction: column;
}

.menu-template-1>ul>li>a {
    font-size: 13px;
    padding-right: 50px;
    font-weight: 500;
    display: flex;
    padding: 0;
    transition: all .2s ease;
    position: relative;
}

.menu-template-1>ul>li>a {
    color: #b2b2b2;
}

.menu-template-1>ul>li>a.active,
.menu-template-1>ul>li>a:hover {
    color: var(--main-clr);
    opacity: 1;
}

/* .menu-template-1 > ul > li > a > button{ --size: 25px; color: var(--main-clr); position: absolute; top: 50%; right: 0; transform: translate(50%, -50%); width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--main-clr); background-color: #fff; opacity: 0; transition: transform .5s cubic-bezier(0.99,-0.01, 0.63, 0.99), opacity .1s ease;} */
.menu-template-1>ul>li>a>button {
    --size: 25px;
    color: var(--main-clr);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-clr);
    background-color: #fff;
    opacity: 0;
    transition: transform .5s ease, opacity .1s ease;
}

.menu-template-1>ul>li>a>button svg {
    height: 15px;
}

.menu-template-1>ul>li>a.active>button {
    transform: translate(50%, -50%) rotate(180deg);
    opacity: 1;
}

.menu-template-1>ul>li>ul {
    width: 310px;
    display: flex;
    gap: 0;
    flex-direction: column;
    position: absolute;
    left: 220px;
    top: 0;
    padding-left: 50px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: all .3s ease;
}

.menu-template-1>ul>li>a.active+ul {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.menu-template-1>ul>li>ul>li>a {
    font-size: 13px;
    color: #000;
    font-weight: 300;
    transition: all .2s ease;
}

.menu-template-1>ul>li>ul>li>a:hover {
    color: var(--main-clr);
}


.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--main-clr);
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    border-radius: 0;
    padding: 3px;
}

.lg-backdrop,
.lg-outer .lg-thumb-outer {
    background-color: rgba(250, 252, 255, 0.95);
}

.lg-next,
.lg-prev {
    background-color: transparent;
    color: var(--main-clr);
    border: 1px solid var(--main-clr);
    transition: all .2s ease;
}

.lg-next:hover,
.lg-prev:hover {
    background-color: var(--main-clr);
}

.lg-toolbar .lg-icon:hover {
    color: #000;
}


.bd-entry {
    position: relative;
    min-height: 300px;
}

.bd-entry::before {
    background-color: rgba(0, 0, 0, .5);
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bd-entry img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bd-entry>div:not(.breadcrumb):not(.slider) {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
}

.bd-entry>div>h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 300;
}

.bd-entry>div>p {
    font-size: 13px;
    color: #fff;
    opacity: .75;
}

.bd-entry>div.wrp {
    flex-direction: column;
}

.bd-entry .breadcrumb {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, 0);
    z-index: 5;
}

.bd-entry .breadcrumb ol {
    color: #fff;
    padding: 0 10px;
    margin: 0;
}

.bd-entry-v2 {
    padding: 70px 0;
}

.bd-entry.video {
    height: 100dvh;
}

.bd-entry.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-entry.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.bd-entry.video video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.bd-entry>button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-100%) rotate(90deg);
    transform-origin: bottom right;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    line-height: 1;
    gap: 10px;
    transition: all .2s ease;
}

.bd-entry>button:hover {
    gap: 15px;
}

.bd-entry>button span {
    font-size: 14px;
    color: #fff;
}

.bd-entry>button::after {
    content: '';
    border-top: 3px solid var(--main-clr);
    transform: translateY(1px);
    width: 35px;
    min-width: 35px;
    display: inline-block;
}


.bd-btn-1 {
    color: var(--main-clr);
    gap: 6px;
    font-size: 10px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bd-btn-1 svg {
    fill: currentColor;
    height: 15px;
}

.bd-btn-1>* {
    transition: all .3s ease;
}

.bd-btn-1:hover>* {
    transform: scale(1.3);
}

.bd-btn-1.v2 {
    flex-direction: row;
}

.bd-btn-1.v2:hover>* {
    transform: scale(1.1);
}

.bd-btn-2 {
    font-weight: 500;
    display: flex !important;
    width: fit-content;
    align-items: center;
}

.bd-btn-2 svg {
    height: 22px;
    margin-right: 5px;
    margin-top: -2px;
    transition: all .2s ease;
}

.bd-btn-2.active {
    color: var(--main-clr);
}

.bd-btn-2.active svg {
    transform: rotate(90deg);
}

.bd-btn-2.sm {
    font-size: 13px;
}

.bd-btn-2.sm svg {
    height: 16px;
}

.bd-btn-2.lg {
    font-size: 18px;
    gap: 5px;
}

.bd-btn-2.lg svg {
    height: 32px;
}


.bd-btn-hover {
    transition: all .3s ease;
}

.bd-btn-hover:hover {
    color: var(--main-clr) !important;
}

.bd-btn-hover svg {
    transition: all .3s ease;
}

.bd-btn-hover:hover svg {
    margin-right: 12px;
    transform: translateX(4px);
}


.bd-breadcrumb {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.bd-breadcrumb ol {
    padding: 0;
    font-size: 0.8rem;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    margin: 0;
}

.bd-breadcrumb ol li a {
    color: #aaa;
    font-weight: 300;
    position: relative;
    display: inline-block;
    transition: all .2s ease;
}

.bd-breadcrumb ol li a:hover {
    color: var(--main-clr);
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
    /* content: '/'; */
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(100%, -50%);
}

.bd-breadcrumb ol li:last-child a {
    color: inherit;
}

.bd-breadcrumb ol li a {
    color: inherit;
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
}

.bd-breadcrumb ol.v2 li:last-child a {
    color: #aaa !important;
}

@media screen and (max-width: 768px) {
    /* .bd-breadcrumb ol{ justify-content: flex-start;} */
}

/* --------------------------------------------- */
/* ----------------- HEADLINES ----------------- */
/* Enhanced Headline Templates */
.headline-template-1 {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
    text-align: center;
}

.handwrite {
    font-size: 38px;
    text-align: center;
    color: var(--main-clr);
    font-style: italic;
    font-family: "Bodoni Moda", serif;
}

.bd-link {
    text-decoration: underline;
    opacity: 0.7;
    color: #878787;
    transition: all 0.3s ease;
}

.bd-link:hover {
    opacity: 1;
    color: var(--main-clr);
}

.headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -1px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

@media screen and (max-width: 992px) {
    .headline {
        font-size: 32px;
    }
}

.headline span {
    color: var(--main-clr);
    background: linear-gradient(135deg, var(--main-clr) 0%, var(--accent-clr) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline-md {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.headline-v1 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    max-width: 600px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sub-headline {
    font-size: 22px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
}

.sub-headline.md {
    font-size: 20px;
}

.sub-headline.sm {
    font-size: 18px;
}

.sub-headline strong {
    color: #555;
}

.top-header {
    font-size: 18px;
    font-weight: 300;
    color: var(--main-clr);
    letter-spacing: 2px;
}

.text-xs {
    font-size: 14px;
}

.text-sm {
    font-size: 16px;
}

.text-md {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 20px;
}

.text-xl {
    font-size: 24px;
}

.text-2xl {
    font-size: 28px;
}

.text-1 {
    font-weight: 300;
    color: inherit;
    letter-spacing: 1px;
}


.spacing-half {
    padding-top: 60px;
}

.spacing {
    padding-top: 100px;
}

.spacing-1 {
    padding-top: 160px;
}

.bg-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    position: relative;
}

.bg-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bg-main::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 184, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bg-main > .container {
    position: relative;
    z-index: 2;
}

.bg-main h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #007acc;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    animation: slideInDown 0.8s ease-out;
}

.bg-main > .container > p {
    font-size: 1.05rem;
    color: #3d3d3d;
    line-height: 1.8;
    max-width: 100%;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.dpy-col {
    padding: 60px 0;
}

.bg-img {
    position: relative;
}

.bg-img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .35);
}

.bg-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-img>div {
    position: relative;
    z-index: 2;
}


.text-main {
    color: var(--main-clr);
}

/* .text-dark{ color: #000;}
.text-light{ color: #fff;} */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* --------------------------------------------- */
/* --------------- BD TMEPLATES ---------------- */
/* --------------------------------------------- */
.bd-template-1 {
    background-color: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 30px -25px rgba(0, 0, 0, .1);
}

.bd-template-1.v2 {
    margin-top: 0;
}

.swiper-slide:has(.bd-template-2) {
    height: auto;
}

.bd-template-2 {
    height: 100%;
    gap: 30px;
    padding: 40px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bd-template-2 .l {
    height: 100%;
}

.bd-template-2 .l h3 {
    margin-bottom: 15px;
}

.bd-template-2 .l p {
    margin: 0;
    max-width: 700px;
}


.bd-template-3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bd-template-3 .img {
    width: 100%;
    aspect-ratio: 1.5;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.bd-template-3 .img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 5;
    opacity: 0;
    transition: all .5s ease;
}

.bd-template-3:hover .img::before {
    opacity: 1;
}

.bd-template-3 .img img {
    position: relative;
    z-index: 2;
}

.bd-template-3 .img iframe {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
}

.bd-template-3 .img img,
.bd-template-3 .img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}

.bd-template-3:hover .img img,
.bd-template-3:hover .img iframe {
    transform: scale(1.15);
}

.bd-template-3 .img>button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.bd-template-3 .detail strong {
    font-size: 18px;
    font-weight: 400;
}


.bd-template-4 {
    display: flex;
    gap: 15px;
    align-items: center;
    color: inherit;
    transition: all .2s ease;
}

.bd-template-4 .img {
    --size: 50px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    display: flex;
}

.bd-template-4 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-4 .detail {
    display: flex;
}

.bd-template-4 .detail strong {
    font-size: 12px;
    font-weight: 400;
    opacity: .75;
    transition: all .2s ease;
}

.bd-template-4:hover {
    color: var(--main-clr);
}

.bd-template-4:hover .detail strong {
    opacity: 1;
}

.bd-template-5 {
    position: relative;
    display: flex;
    flex-direction: column;
}

.bd-template-5 .img {
    aspect-ratio: 1;
    display: flex;
    position: relative;
}

.bd-template-5 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-5 .detail {
    color: #fff;
    justify-content: flex-end;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.bd-template-5:hover .detail {
    background-color: rgba(0, 0, 0, .5);
}

.bd-template-5 .detail>strong {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.bd-template-5 .detail>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all .3s ease;
}

.bd-template-5:hover .detail>div {
    padding-bottom: 35px;
}

.bd-template-5 .detail>div span {
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

.bd-template-5 .detail>small {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    position: absolute;
    transform: translateY(100%);
    transition: all .3s ease;
}

.bd-template-5 .detail>small:hover {
    gap: 7px;
    padding-left: 5px;
}

.bd-template-5 .detail>small svg {
    height: 16px;
}

.bd-template-5:hover .detail>small {
    opacity: 1;
    transform: translateY(0);
}

.bd-template-6 {
    width: 70px;
    background-color: #eee;
    padding: 12px;
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.bd-template-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-7 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-template-7 .detail p {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bd-wrapper-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-wrapper-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.bd-wrapper-3 {
    display: flex;
    gap: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>button {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>button {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>button>span {
    white-space: nowrap;
}

.bd-select>button>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>button>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>button>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>a {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>a {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>a>span {
    white-space: nowrap;
}

.bd-select>a>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>a>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>a>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-check {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.bd-check input {
    --size: 16px;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    position: relative;
}

.bd-check input::before {
    font-size: 12px;
    content: 'âœ”';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--size);
    height: var(--size);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    color: transparent;
    transition: all .2s ease;
}

.bd-check input:checked::before {
    background-color: var(--main-clr);
    color: #fff;
}

.bd-check span {
    font-size: 13px;
}


.bd-select ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.bd-select ul li a {
    padding: 3px 0;
    display: inline-block;
}

.bd-select>ul ul li {
    border-bottom: none;
}

.bd-list {
    --line-clr: #ddd;
}

.bd-list li {
    position: relative;
}

.bd-list li a {
    position: relative;
}

.bd-list li>a>button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    height: fit-content;
    display: flex;
    transition: all .3s ease;
}

.bd-list li.open>a>button {
    transform: translateY(-50%) rotate(180deg);
}

.bd-list li ul {
    padding-left: 12px;
}

.bd-list li ul ul {
    padding-left: 25px;
}

.bd-list li ul li:has(+ li)>ul {
    border-left: 1px solid var(--line-clr);
}

.bd-list li ul li {
    position: relative;
}

.bd-list li ul li a {
    padding-left: 20px;
    transition: all .2s ease;
}

.bd-list li ul li a:hover {
    padding-left: 25px;
}

.bd-list li ul li>a::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    border-left: 1px solid var(--line-clr);
    height: 100%;
}

.bd-list li ul li>a::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--line-clr);
    height: 0;
    width: 10px;
    transition: all .2s ease;
}

.bd-list li ul li:hover>a::after {
    width: 15px;
}

.bd-list li ul li:nth-last-child(1)>a::before {
    height: 50%;
}


.slider-template-1 {
    position: relative;
}

.slider-template-1 .swiper-controller {
    position: absolute;
    right: 50px;
    top: 40px;
    gap: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slider-template-1 .swiper-controller .swiper-counter {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

/* .slider-template-1 .swiper-controller .swiper-btn{ --size: 20px; width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: transparent; border: 1px solid var(--main-clr); color: var(--main-clr);} */
.slider-template-1 .swiper-controller .swiper-btn {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider-template-2 {
    position: relative;
}

.slider-template-2 .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.slider-template-2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-template-2 .swiper-btn {
    --size: 30px;
    position: absolute;
    top: 50%;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slider-template-2 .swiper-btn svg {
    height: 18px;
}

.slider-template-2 .swiper-btn.prev {
    transform: translate(-50%, -50%);
    left: 0;
}

.slider-template-2 .swiper-btn.next {
    transform: translate(50%, -50%);
    right: 0;
}


.thumb-slider .swiper-slide {
    border: 2px solid #eee;
    transition: all .2s ease;
    padding: 2px;
}

.thumb-slider .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--main-clr);
}

.thumb-slider .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .slider-template-3{ height: fit-content; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; z-index: 5;} */
.slider-template-3 {
    height: fit-content;
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.slider-template-3 .swiper-wrapper {
    height: fit-content;
}

.slider-template-3 .swiper-wrapper .swiper-slide {
    height: fit-content;
    padding: 0 15px;
}

.slider-template-3 .swiper-wrapper .swiper-slide p {
    height: fit-content;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
}


@media screen and (max-width: 768px) {
    .slider-template-3 .swiper-wrapper .swiper-slide p {
        font-size: 24px;
    }
}


/* BUTTONS */
.single-btn {
    background-color: transparent;
    border: none;
    outline: none;
    display: inline-block;
}

.bd-btn:not(.just-clr) {
    gap: 15px;
    padding: 5px 30px;
    height: fit-content;
    min-height: 45px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    width: fit-content;
}

.bd-btn {
    background-color: var(--bg);
    border: 1px solid var(--border, var(--bg));
    color: var(--clr);
    transition: all .3s ease;
}

.bd-btn:not(.just-clr) svg {
    height: 30px;
    margin-left: -15px;
}

.bd-btn.v2 {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    min-height: 30px;
    padding: 0;
    padding-bottom: 2px;
    border-radius: 999px;
}

.bd-btn:hover {
    background-color: var(--hover-bg, var(--clr));
    color: var(--hover-clr, var(--bg));
    border-color: var(--hover-border, var(--bg));
}

.btn-full {
    width: 100% !important;
    padding: 0;
    justify-content: center;
}

.btn-main {
    --bg: var(--main-clr);
    color: var(--main-clr-txt);
}

.btn-main-outlined {
    --bg: transparent;
    color: var(--main-clr);
    --border: var(--main-clr);
    --hover-bg: var(--main-clr);
    --hover-clr: var(--main-clr-txt);
}

.btn-white {
    --bg: #fff;
    color: var(--main-clr);
}

/* .btn-white-outlined{ --bg: transparent; color: #fff; --border: #fff; --hover-bg: #fff; --hover-clr: var(--main-clr);} */
.btn-white-outlined {
    --bg: transparent;
    color: #fff;
    --border: #fff;
    --hover-bg: var(--main-clr);
    --hover-border: var(--main-clr);
    --hover-clr: #fff;
}

.btn-black {
    --bg: #000;
    color: #fff;
}

.btn-black-outlined {
    --bg: #fff;
    color: #000;
    --border: #000;
    --hover-bg: #000;
    --hover-clr: #fff;
}


.bottom-close {
    z-index: 20;
}


.modal {
    --bs-modal-border-radius: 0;
}

/* Bootstrap 5 CSS and icons included */
:root {
    /* --colorPrimaryNormal: #00b3bb;
    --colorPrimaryDark: #00979f;
    --colorPrimaryGlare: #00cdd7;
    --colorPrimaryHalf: #80d9dd;
    --colorPrimaryQuarter: #bfecee;
    --colorPrimaryEighth: #dff5f7;
    --colorPrimaryPale: #f3f5f7;
    --colorPrimarySeparator: #f3f5f7;
    --colorPrimaryOutline: #dff5f7;
    --colorButtonNormal: #00b3bb;
    --colorButtonHover: #00cdd7;
    --colorLinkNormal: #00979f;
    --colorLinkHover: #00cdd7; */

    /* --colorPrimaryNormal: #bb7300;
    --colorPrimaryDark: #9f6f00;
    --colorPrimaryGlare: #d78800;
    --colorPrimaryHalf: #ddb880;
    --colorPrimaryQuarter: #eee1bf;
    --colorPrimaryEighth: #f7f0df;
    --colorPrimaryPale: #f7f6f3;
    --colorPrimarySeparator: #f7f6f3;
    --colorPrimaryOutline: #f7f0df;
    --colorButtonNormal: #bb7900;
    --colorButtonHover: #d78f00;
    --colorLinkNormal: #9f6f00;
    --colorLinkHover: #d7a100; */

    --colorPrimaryNormal: #b4985a;
    /* Ana renk - altÄ±n bronz */
    --colorPrimaryDark: #967a45;
    /* Daha koyu tonu */
    --colorPrimaryGlare: #d6b875;
    /* Parlak, Ä±ÅŸÄ±klÄ± tonu */
    --colorPrimaryHalf: #d9c29d;
    /* %50 doygunlukta tonu */
    --colorPrimaryQuarter: #ecdfc2;
    /* Daha yumuÅŸak, aÃ§Ä±k tonu */
    --colorPrimaryEighth: #f7f1e2;
    /* Ã‡ok hafif tonu */
    --colorPrimaryPale: #f9f7f4;
    /* Soluk, arka plan rengi */
    --colorPrimarySeparator: #f9f7f4;
    /* AyÄ±rÄ±cÄ± Ã§izgiler iÃ§in */
    --colorPrimaryOutline: #f7f1e2;
    /* Border veya outline iÃ§in */

    --colorButtonNormal: #b4985a;
    /* Buton rengi */
    --colorButtonHover: #d6b875;
    /* Hover'da daha parlak tonu */
    --colorLinkNormal: #967a45;
    /* Link rengi */
    --colorLinkHover: #d6b875;
}

.upload_dropZone {
    color: #0f3c4b;
    background-color: var(--colorPrimaryPale, #c8dadf);
    outline: 2px dashed var(--colorPrimaryHalf, #c1ddef);
    outline-offset: -12px;
    transition:
        outline-offset 0.2s ease-out,
        outline-color 0.3s ease-in-out,
        background-color 0.2s ease-out;
}

.upload_dropZone.highlight {
    outline-offset: -4px;
    outline-color: var(--colorPrimaryNormal, #0576bd);
    background-color: var(--colorPrimaryEighth, #c8dadf);
}

.upload_svg {
    fill: var(--colorPrimaryNormal, #0576bd);
}

.btn-upload {
    cursor: pointer;
    margin: 0 auto;
}

/* .btn-upload {
    color: #fff;
    background-color: var(--colorPrimaryNormal);
} */
/* .btn-upload:hover,
.btn-upload:focus {
    color: #fff;
    background-color: var(--colorPrimaryGlare);
} */
.upload_img {
    width: calc(33.333% - (2rem / 3));
    object-fit: contain;
}


@media (min-width: 1200px) {
    .container.md {
        max-width: 950px;
    }
}

@media (min-width: 1400px) {
    .container.md {
        max-width: 1200px;
    }
}


@media screen and (max-width: 1280px) {
    .text-xl {
        font-size: 20px;
    }

    .text-xs {
        font-size: 13px;
    }

    .handwrite {
        font-size: 32px;
    }

    .headline-v1 {
        font-size: 44px;
    }
}

@media screen and (max-width: 992px) {
    header>.b>div>.c {
        display: none;
    }

    header .header-menu>.b>div {
        flex-direction: column;
        gap: 60px;
        max-width: 900px;
    }

    header .header-menu>.b>div .r {
        max-width: unset;
    }

    .menu-template-1>ul>li>ul {
        display: none;
        width: 100%;
        position: static;
        left: unset;
        top: unset;
        padding-left: 10px;
        padding-top: 5px;
        opacity: 1;
        pointer-events: all;
        transform: unset;
    }

    .menu-template-1>ul {
        max-width: unset;
        border: none;
    }

    .menu-template-1>ul>li>a>button {
        opacity: 1;
        transform: translate(0, -50%) rotate(90deg);
        transition: all .2s ease;
    }

    .menu-template-1>ul>li>a.active+ul {
        display: flex;
    }

    .menu-template-1>ul>li>a.active>button {
        transform: translate(0, -50%) rotate(180deg);
    }


    .samples {
        font-size: 13px;
    }

    .samples>.icon svg {
        height: 30px;
    }

    .bd-wrapper-2 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .headline-md {
        font-size: 26px;
    }

    .sub-headline {
        font-size: 20px;
    }

    .bd-template-2 {
        flex-direction: column;
        padding: 40px 25px 30px;
    }

    .bd-template-2 .r button {
        white-space: unset !important;
    }

    .slider-template-1 .swiper-controller {
        right: 20px;
        top: 20px;
    }

    .bd-btn-2.lg {
        font-size: 16px;
    }

    .bd-btn-2.lg svg {
        height: 28px;
    }


    footer>div .b {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .bd-entry {
        min-height: 250px;
    }

    .bd-entry>div h1 {
        font-size: 36px;
    }

    /* OTHERS */
    .text-xl {
        font-size: 22px;
    }

    .text-xs {
        font-size: 15px;
    }

    .bd-btn-1 {
        font-size: 11px;
    }


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

    .bd-template-5 .detail>strong {
        font-size: 12px;
    }
}


@media screen and (max-width: 576px) {
    .bd-wrapper-2 {
        display: flex;
        flex-direction: column;
    }

}


@media screen and (min-width: 768px) {
    .show-md {
        display: none;
    }
}


.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--main-clr);
    box-shadow: 0 0 0 3px rgba(180, 152, 90, 0.3);
}


/* .ticker-wrapper { width: 100%; height: 60px; overflow: hidden; position: relative; background: #f4f4f4; border-top: 2px solid #ddd; border-bottom: 2px solid #ddd; display: flex; align-items: center; font-family: sans-serif;} */
/* .ticker-wrapper { width: 100%; height: 50px; overflow: hidden; position: relative; color: var(--main-clr); font-weight: 500; background: rgba(180, 152, 90, 0.2); border-top: 2px solid rgba(180, 152, 90, 0.4); border-bottom: 2px solid rgba(180, 152, 90, 0.4); display: flex; align-items: center; font-family: sans-serif;} */
.ticker-wrapper {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    border-top: 2px solid #0dcaf030;
    border-bottom: 2px solid #0dcaf030;
    display: flex;
    align-items: center;
    font-family: sans-serif;
}

.ticker {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: ticker-scroll linear infinite;
}

.ticker-item {
    margin-right: 5rem;
    font-size: 1.1rem;
    color: var(--main-clr);
    flex: 0 0 auto;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.page-detail {
    margin-bottom: 0;
    margin-top: 141px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px 3rem 40px 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
}

.page-detail h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.page-detail h1 span {
    color: #000000;
    background-clip: text;
}

.page-detail .breadcrumb {
    margin-top: 0;
    padding: 0;
    background: transparent;
}

.page-detail .breadcrumb ol {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.page-detail .breadcrumb li {
    margin: 0;
    font-size: 10px;
    color: #6b7280;
}

.page-detail .breadcrumb li a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 10px;
}

.page-detail .breadcrumb li a:hover {
    color: var(--secondary-clr);
}

.page-detail .breadcrumb li.active {
    color: var(--dark-text);
}

.page-detail .breadcrumb li::after {
    content: '>';
    margin-left: 8px;
    color: #000000;
}

.page-detail .breadcrumb li:last-child::after {
    content: '';
}

@media screen and (max-width: 992px) {
    .page-detail h1 {
        font-size: 32px;
    }
    .page-detail {
        padding: 40px 2rem 30px 2rem;
    }
}

@media screen and (max-width: 600px) {
    .page-detail h1 {
        font-size: 20px;
    }
    .page-detail {
        padding: 40px 0;
    }
    .page-detail .breadcrumb ol {
        gap: 4px;
    }
    .page-detail .breadcrumb li {
        font-size: 0.8rem;
    }
}

h2 { 
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

p {
    color: var(--light-text);
    line-height: 25px;
    font-weight: 400;
    font-size: 13px;
}

/* Global Enhancement Styles */
section {
    transition: all 0.3s ease;
}

/* Smooth transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--main-clr);
    outline-offset: 2px;
}

/* Better list styles */
ul, ol {
    margin: 1rem 0;
}

li {
    margin: 5px 0px;
}

/* Input and textarea styling */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--main-clr);
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Better text selection color */
::selection {
    background-color: var(--main-clr);
    color: white;
}

::-moz-selection {
    background-color: var(--main-clr);
    color: white;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
}

@media screen and (max-width: 768px) {
.bd-entry.video {
    height: 100dvh
}
header.move {
    top: -63px;
}
header>.t>div>.c .logo {
    color: inherit;
    height: auto;
} 
.slider-template-3 .swiper-wrapper { display:none }
}



 .nazim-herkeze-lazim {
        background-color: #ffffff;
        color: #ecf0f1;
        padding: 40px 0 20px 0;
        border-top: 5px solid #66b951;
    }
    
    .hizmet-bolgeleri {
        margin-bottom: 3rem;
    }
    
    .baslik {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #66b951;
    }
    
    .bolgeler {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .bolgeler li {
        margin-bottom: 8px;
    }
    
    .bolgeler a {
        color: #333;
        text-decoration: none;
        font-size: 13px;
    }
    
    .bolgeler a:hover {
        color: #66b951;
        text-decoration: underline;
    }
    

    .nazim-herkeze-lazim .container p {
        margin: 0;
        font-size: 13px;
    }
    
    @media (max-width: 768px) {
        .hizmet-bolgeleri {
            flex-direction: column;
        }
        
        .bolge {
            margin: 0 0 25px 0;
        }
        
        .baslik {
            font-size: 16px;
        }
        
        .bolgeler a {
            font-size: 13px;
        }
    }

    .fixle { margin-top: 161px; }

    .modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    margin-top: 0;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 0;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--main-clr);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.footer-contact-item:hover {
    background: rgba(102, 185, 81, 0.2);
    color: var(--main-clr);
    transform: translateX(5px);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
}


.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--main-clr);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--main-clr);
    transform: translateX(5px);
}

/* Regions Grid */
.footer-regions {
    grid-column: span 1;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.region-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 185, 81, 0.3);
}

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

.region-links li {
    margin-bottom: 10px;
}

.region-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.region-links a:hover {
    color: var(--main-clr);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-credits a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-credits img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-credits a:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        margin-top: 60px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-contact-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 30px 0 20px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .region-name {
        font-size: 0.9rem;
    }

    .footer-links a,
    .region-links a {
        font-size: 0.85rem;
    }

    .footer-contact-info {
        flex-direction: column;
    }

    .footer-contact-item {
        width: 100%;
        justify-content: flex-start;
    }
}

.floating-contact {
        --fc-size: 56px;
        --fc-gap: 10px;
        position: fixed;
        right: calc(24px + env(safe-area-inset-right, 0px));
        bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: var(--fc-gap);
        transition: transform .25s ease;
    }

    .fc-actions {
        display: grid;
        gap: var(--fc-gap);
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        transition: opacity .2s ease, transform .2s ease;
    }

    .fc-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        line-height: 1;
        border: 1px solid rgba(0,0,0,.06);
        background: rgba(255,255,255,.85);
        color: #111;
        backdrop-filter: saturate(180%) blur(10px);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        box-shadow: 0 6px 24px rgba(0,0,0,.12);
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
        will-change: transform;
    }
    .fc-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.18); }

    .fc-btn svg { width: 20px; height: 20px; display: block; }

    .fc-label {
        max-width: 140px;
        opacity: 1;
        overflow: hidden;
        white-space: nowrap;
        transition: max-width .25s ease, opacity .2s ease;
    }

    /* Accents */
    .fc-whatsapp {
        background: #25D366;
        border-color: #25D366;
        color: #fff;
    }
    .fc-whatsapp:hover { background: #1ebe5a; }
    .fc-whatsapp svg { fill: currentColor; }

    @media (max-width: 600px) {
        .floating-contact { --fc-size: 52px; right: calc(16px + env(safe-area-inset-right, 0px)); bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
        .fc-btn { padding: 10px 12px; font-size: 13px; }
        .fc-btn svg { width: 18px; height: 18px; }
    .fc-label { max-width: 120px; }
    }

    @media (prefers-reduced-motion: reduce) {
        .floating-contact, .fc-actions, .fc-btn, .fc-label { transition: none !important; }
    }


    /* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #66b951 0%, #4a9539 100%);
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.services-intro {
    padding: 0 0 60px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.services-container {
    padding: 0 0 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 185, 81, 0.15);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    color: var(--dark-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-description {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-description p {
    margin-bottom: 12px;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-clr);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    gap: 12px;
    color: #4a9539;
}

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

.service-link:hover svg {
    transform: translateX(3px);
}

.no-services {
    text-align: center;
    padding: 80px 20px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.services-cta {
    padding: 80px 0;
    margin-top: 40px;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    color: var(--dark-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary {
    background: var(--main-clr);
    color: #ffffff;
}

.cta-btn-primary:hover {
    background: #4a9539;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 185, 81, 0.3);
    color: #ffffff;
}

.cta-btn-secondary {
    background: #25D366;
    color: #ffffff;
}

.cta-btn-secondary:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-hero {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .services-cta {
        padding: 60px 0;
    }

    .services-intro {
        padding: 0 0 40px 0;
    }

    .services-container {
        padding: 0 0 60px 0;
    }

    .intro-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .service-card {
        border-radius: 12px;
    }
}

/* Animation on scroll (if AOS library is available) */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}