﻿*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:       #1557b0;
    --primary-dark:  #0d47a1;
    --accent:        #f97316;
    --accent-dark:   #ea6c0a;
    --dark-navy:     #1b2a4a;
    --text-dark:     #1e293b;
    --text-mid:      #475569;
    --text-light:    #94a3b8;
    --white:         #ffffff;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:     0 8px 30px rgba(0,0,0,0.12);
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     24px;
    --navbar-h:      80px;
    --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

section[id], header[id], footer[id], .scroll-anchor-target {
    scroll-margin-top: 110px;
}

.scroll-anchor {
    position: absolute;
    top: -110px;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    section[id], header[id], footer[id], .scroll-anchor-target {
        scroll-margin-top: 90px;
    }
    .scroll-anchor {
        top: -90px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    width: calc(100% - 48px);
    max-width: 1240px;
    z-index: 1000;
    height: 76px;
    border-radius: 50px;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 25px 3px rgba(12, 30, 61, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    top: 20px;
    height: 76px;
}

.navbar.scrolled::before {
    box-shadow: 0 0 30px 4px rgba(12, 30, 61, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.navbar-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.navbar.scrolled .logo-img {
    height: 48px;
}

.navbar-logo:hover .logo-img {
    transform: scale(1.04);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-mid);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    transition: color var(--transition), background-color var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(26, 115, 232, 0.06);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(26, 115, 232, 0.1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid rgba(26, 115, 232, 0.2);
    background: rgba(255, 255, 255, 0.6);
    transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.navbar-phone svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.navbar-phone:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(26, 115, 232, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.08);
}

.navbar-phone:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

.btn-randevu {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-randevu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-randevu:hover::before {
    left: 100%;
}

.btn-randevu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, #fb923c 0%, var(--accent) 100%);
}

.btn-randevu:active {
    transform: translateY(0);
}

.btn-primary,
.btn-secondary,
.ba-cta-btn-premium,
.calc-wa-btn,
.footer-section__cta-btn,
.srv-card__btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.ba-cta-btn-premium::before,
.calc-wa-btn::before,
.footer-section__cta-btn::before,
.srv-card__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.ba-cta-btn-premium:hover::before,
.calc-wa-btn:hover::before,
.footer-section__cta-btn:hover::before,
.srv-card__btn:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(26, 115, 232, 0.05);
    border: 1px solid rgba(26, 115, 232, 0.1);
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: background-color var(--transition), transform var(--transition);
}

.hamburger:hover {
    background: rgba(26, 115, 232, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-left: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 36px 0 0 36px;
    box-shadow: -15px 0 50px rgba(13, 22, 43, 0.12);
    z-index: 10002;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    overflow: hidden;
}

.mobile-menu.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

body:has(.mobile-menu.open) {
    overflow: hidden;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(21, 87, 176, 0.3) 0%, rgba(21, 87, 176, 0) 70%);
    z-index: -1;
    animation: floatBlob1 18s infinite linear;
    pointer-events: none;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0) 70%);
    z-index: -1;
    animation: floatBlob2 20s infinite linear;
    pointer-events: none;
}

@keyframes floatBlob1 {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
        transform: translate3d(-40px, 60px, 0) scale(1.15) rotate(180deg);
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate3d(0, 0, 0) rotate(360deg);
    }
}

@keyframes floatBlob2 {
    0% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        border-radius: 30% 70% 60% 40% / 60% 40% 50% 50%;
        transform: translate3d(50px, -45px, 0) scale(1.2) rotate(-180deg);
    }
    100% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
        transform: translate3d(0, 0, 0) rotate(-360deg);
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.mobile-menu-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(13, 22, 43, 0.05));
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(13, 22, 43, 0.05);
}

.mobile-menu-close:hover {
    background: rgba(21, 87, 176, 0.1);
    border-color: rgba(21, 87, 176, 0.3);
    color: var(--primary);
    transform: rotate(90deg) scale(1.05);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    position: relative;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none; 
}
.mobile-menu-links::-webkit-scrollbar {
    display: none; 
}

.mobile-menu-links::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 70%);
    z-index: -1;
    animation: floatBlob3 16s infinite linear;
    pointer-events: none;
}

@keyframes floatBlob3 {
    0% {
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(0.95);
    }
    50% {
        border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
        transform: translate3d(-30px, -30px, 0) rotate(180deg) scale(1.15);
    }
    100% {
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
        transform: translate3d(0, 0, 0) rotate(360deg) scale(0.95);
    }
}

.mobile-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-navy);
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    padding: 5px 0;
    background: none;
    border: none;
    box-shadow: none;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(13, 22, 43, 0.04);
    margin-right: 18px;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.nav-icon {
    color: var(--primary);
    opacity: 0.85;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link::after,
.mobile-nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 62px; 
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(21, 87, 176, 0.3);
}

.mobile-nav-link:hover,
.mobile-nav-dropdown-toggle:hover {
    transform: translate3d(6px, 0, 0);
}

.mobile-nav-link:hover .nav-icon-wrap,
.mobile-nav-dropdown-toggle:hover .nav-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    box-shadow: 0 8px 18px rgba(21, 87, 176, 0.22);
    transform: scale(1.08);
}

.mobile-nav-link:hover .nav-icon,
.mobile-nav-dropdown-toggle:hover .nav-icon {
    color: #ffffff;
    transform: rotate(8deg);
    opacity: 1;
}

.mobile-nav-link:hover .nav-text,
.mobile-nav-dropdown-toggle:hover .nav-text {
    color: var(--primary-dark) !important;
}

.mobile-nav-link:hover::after,
.mobile-nav-dropdown-toggle:hover::after {
    width: 60px;
}

.mobile-nav-link.active,
.mobile-nav-dropdown-toggle.active {
    color: var(--primary) !important;
}

.mobile-nav-link.active .nav-icon-wrap,
.mobile-nav-dropdown-toggle.active .nav-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 8px 18px rgba(21, 87, 176, 0.22) !important;
}

.mobile-nav-link.active .nav-icon,
.mobile-nav-dropdown-toggle.active .nav-icon {
    color: #ffffff !important;
    opacity: 1 !important;
}

.mobile-nav-link.active .nav-text,
.mobile-nav-dropdown-toggle.active .nav-text {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.mobile-nav-link.active::after,
.mobile-nav-dropdown-toggle.active::after {
    width: 60px !important;
}

.mobile-nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    text-decoration: none;
    color: var(--dark-navy);
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    padding: 5px 0;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown-arrow {
    margin-left: auto;
    margin-right: 10px;
    color: var(--text-mid);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
}

.mobile-nav-dropdown-toggle:hover .mobile-dropdown-arrow {
    color: var(--primary);
}

.mobile-nav-dropdown.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-dropdown-sublinks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.4s ease;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    position: relative;
}

.mobile-dropdown-sublinks::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(21, 87, 176, 0.2) 100%);
    border-radius: 1px;
}

.mobile-nav-dropdown.open .mobile-dropdown-sublinks {
    max-height: 280px;
    padding-top: 4px;
    padding-bottom: 8px;
    opacity: 1;
}

.mobile-sublink {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 550;
    color: #475569;
    text-decoration: none;
    padding: 8px 0 8px 32px;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), font-weight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.mobile-sublink::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 1px solid #ffffff;
    transform: translateY(-50%);
    transition: background-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-sublink:hover,
.mobile-sublink.active {
    color: var(--primary) !important;
    transform: translate3d(3px, 0, 0);
    font-weight: 700 !important;
}

.mobile-sublink:hover::before,
.mobile-sublink.active::before {
    background: var(--primary);
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 6px rgba(21, 87, 176, 0.4);
}

.mobile-menu-footer {
    padding: 16px 24px 20px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.mobile-menu-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(13, 22, 43, 0.03);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.info-icon {
    color: var(--primary);
    opacity: 0.85;
    flex-shrink: 0;
    transition: color 0.4s ease;
}

.info-item:hover .info-icon {
    color: var(--accent);
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(21, 87, 176, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-phone svg {
    stroke: currentColor;
    transition: transform 0.4s ease;
}

.mobile-menu-phone:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 11, 21, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.hero-wrapper {
    position: relative;
    width: 100%;
}

.hero-banner {
    position: relative;
    margin-top: 0;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    max-height: none;
    overflow: hidden;
    background: #eef3fc;
}

.hero-banner-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-banner-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 73%;
    display: block;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.12) 100%
    );
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding-top: 130px;
    padding-bottom: 110px;
}

.flower {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .flower {
    opacity: 0;
}

.flower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    will-change: transform;
}

.flower-1 {
    left: -80px;
    top: -30px;
    width: 520px;
    height: calc(100% + 80px);
    min-height: 620px;
    transform-origin: top left;
    z-index: 4;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}
.flower-1.play-anim.loaded {
    animation: slideInTopLeft 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.flower-1 img {
    object-fit: cover;
    object-position: top;
    animation: float-gentle 6s ease-in-out infinite;
}

.flower-2 {
    left: -110px;
    bottom: -40px;
    width: 620px;
    height: calc(100% + 80px);
    min-height: 700px;
    transform-origin: bottom left;
    z-index: 3;
}
.flower-2.play-anim.loaded {
    animation: slideInBottomLeft 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.flower-2 img {
    object-fit: cover;
    object-position: bottom left;
    animation: float-gentle 7s ease-in-out infinite 0.8s;
}

.flower-3 {
    right: -80px;
    top: -30px;
    width: 480px;
    height: calc(100% + 80px);
    min-height: 620px;
    transform-origin: top right;
    z-index: 4;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}
.flower-3.play-anim.loaded {
    animation: slideInTopRight 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.flower-3 img {
    object-fit: cover;
    object-position: top;
    animation: float-gentle 5.5s ease-in-out infinite 1.2s;
}

.flower-4 {
    right: -50px;
    bottom: 75px;
    width: 400px;
    height: 380px;
    transform-origin: bottom right;
    z-index: 3;
}
.flower-4.play-anim.loaded {
    animation: slideInBottomRight 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.flower-4 img {
    animation: float-gentle 8s ease-in-out infinite 1.8s;
}

@keyframes float-gentle {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    33%       { transform: translate3d(0, -8px, 0) rotate(0.5deg); }
    66%       { transform: translate3d(0, 4px, 0) rotate(-0.4deg); }
}

.hero-content {
    text-align: center;
    padding: 0 24px 20px;
    max-width: 860px;
    margin: -60px auto 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    border: 1.5px solid rgba(29, 78, 216, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    animation: fadeInDown 0.6s ease both;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.35);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(29, 78, 216, 0.08) 100%);
}

.hero-badge-icon {
    width: 14px;
    height: 14px;
    color: #10b981;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.25));
    transition: transform 0.3s ease;
}

.hero-badge:hover .hero-badge-icon {
    transform: scale(1.15) rotate(15deg);
}

.hero-badge__text {
    font-size: inherit;
    font-weight: 800;
    letter-spacing: 0.14em;
    background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4.6rem);
    font-weight: 300;
    color: var(--dark-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(255,255,255,0.85);
    animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-title-accent {
    color: var(--accent);
    display: block;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.22rem);
    color: var(--text-mid);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(255,255,255,0.9);
    animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(21, 87, 176, 0.35);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.02em;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 87, 176, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: 0 6px 22px rgba(249,115,22,0.35);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.5);
}

.hero-features {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    z-index: 10;
    animation: fadeInUpCentered 0.8s ease 0.4s both;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
    .hero-features {
        bottom: 25px;
    }
    .hero-features.scrolled-features {
        transform: translate3d(-50%, 75px, 0);
    }
}

.features-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.07), 0 4px 20px rgba(27, 42, 74, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    width: 100%;
    gap: 10px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 4px 8px;
    flex: 1;
    min-width: 0;
    transition: transform var(--transition), filter var(--transition);
    cursor: default;
}

.feature-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

#feat-ucretsiz-kesif .feature-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(21, 87, 176, 0.15);
    border-color: transparent;
}
#feat-zamaninda-teslimat .feature-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
    border-color: transparent;
}
#feat-doga-dostu .feature-icon {
    background: #22c55e;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
    border-color: transparent;
}
#feat-musteri-memnuniyeti .feature-icon {
    background: #eab308;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.15);
    border-color: transparent;
}

.feature-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.2px;
    transition: transform var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.08) rotate(4deg);
}

#feat-ucretsiz-kesif:hover .feature-icon {
    box-shadow: 0 6px 15px rgba(21, 87, 176, 0.3);
}
#feat-zamaninda-teslimat:hover .feature-icon {
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}
#feat-doga-dostu:hover .feature-icon {
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.3);
}
#feat-musteri-memnuniyeti:hover .feature-icon {
    box-shadow: 0 6px 15px rgba(234, 179, 8, 0.3);
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--dark-navy);
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.feature-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-top: 0;
    white-space: nowrap;
}

.feature-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(0, 45, 98, 0) 0%, rgba(0, 45, 98, 0.08) 50%, rgba(0, 45, 98, 0) 100%);
    flex-shrink: 0;
    align-self: center;
}

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

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

@keyframes fadeInUpCentered {
    from { opacity: 0; transform: translate(-50%, 24px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes slideInTopLeft {
    from {
        transform: translate(-180px, -80px) rotate(-20deg);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInBottomLeft {
    from {
        transform: translate(-180px, 80px) rotate(20deg);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInTopRight {
    from {
        transform: translate(180px, -80px) rotate(20deg);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInBottomRight {
    from {
        transform: translate(180px, 80px) rotate(-20deg);
        opacity: 0;
    }
    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

@media (min-width: 1920px) {
    .hero-banner {
        height: 100vh;
        min-height: 880px;
        max-height: none;
        background-position: center 60%;
    }
    .hero-inner {
        padding-top: 160px;
        padding-bottom: 140px;
    }
    .hero-content {
        max-width: 1000px;
        margin: -80px auto 0;
    }
    .hero-title {
        font-size: 5.2rem;
        margin-bottom: 18px;
    }
    .hero-subtitle {
        font-size: 1.45rem;
        margin-bottom: 30px;
    }
    .hero-badge {
        font-size: 0.85rem;
        padding: 9px 28px;
        margin-bottom: 18px;
    }
    .btn-primary, .btn-secondary {
        font-size: 1.1rem;
        padding: 17px 36px;
    }
    .hero-features {
        bottom: 30px;
        max-width: 1500px;
        padding: 0 40px;
    }
    .hero-features.scrolled-features {
        transform: translate3d(-50%, 85px, 0);
    }
    .features-bar {
        padding: 14px 32px;
    }
    .feature-item {
        gap: 14px;
        padding: 6px 20px;
    }
    .feature-icon { width: 52px; height: 52px; }
    .feature-icon svg { width: 25px !important; height: 25px !important; }
    .feature-title { font-size: 0.95rem; }
    .feature-sub { font-size: 0.80rem; }
    .feature-divider { height: 34px; }

    .flower-1 { width: 680px; left: -100px; }
    .flower-2 { width: 720px; height: calc(100% + 120px); bottom: -60px; left: -140px; }
    .flower-3 { width: 640px; right: -100px; }
    .flower-4 { width: 520px; height: 480px; bottom: 100px; right: -60px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .hero-banner {
        height: 100vh;
        min-height: 800px;
        max-height: none;
        background-position: center 65%;
    }
    .hero-inner {
        padding-top: 145px;
        padding-bottom: 125px;
    }
    .hero-content {
        max-width: 920px;
        margin: -70px auto 0;
    }
    .hero-title {
        font-size: 4.6rem;
        margin-bottom: 14px;
    }
    .hero-subtitle {
        font-size: 1.32rem;
        margin-bottom: 26px;
    }
    .hero-badge {
        font-size: 0.80rem;
        padding: 8px 24px;
        margin-bottom: 16px;
    }
    .btn-primary, .btn-secondary {
        font-size: 1.05rem;
        padding: 16px 32px;
    }
    .hero-features {
        bottom: 28px;
        max-width: 1400px;
        padding: 0 30px;
    }
    .hero-features.scrolled-features {
        transform: translate3d(-50%, 80px, 0);
    }
    .features-bar {
        padding: 12px 28px;
    }
    .feature-item {
        gap: 13px;
        padding: 5px 18px;
    }
    .feature-icon { width: 48px; height: 48px; }
    .feature-icon svg { width: 23px !important; height: 23px !important; }
    .feature-title { font-size: 0.88rem; }
    .feature-sub { font-size: 0.76rem; }
    .feature-divider { height: 30px; }

    .flower-1 { width: 600px; left: -90px; }
    .flower-2 { width: 660px; height: calc(100% + 100px); bottom: -50px; left: -120px; }
    .flower-3 { width: 560px; right: -90px; }
    .flower-4 { width: 460px; height: 430px; bottom: 90px; right: -55px; }
}

@media (max-width: 1440px) {
    .hero-banner { min-height: 700px; }
    .hero-inner { padding-top: 115px; padding-bottom: 95px; }
    .hero-content { padding: 0 24px 10px; margin: -50px auto 0; }
    .hero-title { font-size: 3.4rem; margin-bottom: 12px; }
    .hero-subtitle { margin-bottom: 18px; }
    .hero-features {
        bottom: -32px;
        max-width: 1140px;
        padding: 0 20px;
    }
    .features-bar {
        padding: 10px 20px;
        border-radius: 100px;
        gap: 0;
    }
    .feature-item {
        flex-direction: row;
        gap: 10px;
        padding: 4px 12px;
    }
    .feature-icon { width: 42px; height: 42px; border-width: 1.5px; }
    .feature-icon svg { width: 20px !important; height: 20px !important; }
    .feature-title { font-size: 0.80rem; }
    .feature-sub { font-size: 0.68rem; }
    .feature-divider { height: 26px; }

    .flower-1 { width: 490px; }
    .flower-2 { width: 580px; height: calc(100% + 80px); bottom: -45px; left: -100px; }
    .flower-3 { width: 460px; }
    .flower-4 { width: 390px; height: 360px; bottom: 60px; }
}

@media (max-width: 1024px) {
    .navbar-links { gap: 2px; }
    .nav-link { padding: 8px 10px; font-size: 0.875rem; }
    .navbar-phone { display: none; }

    .flower-1 { left: -60px; width: 360px; }
    .flower-2 { left: -80px; width: 480px; height: calc(100% + 60px); bottom: -35px; }
    .flower-3 { right: -60px; width: 330px; }
    .flower-4 { right: -40px; width: 280px; height: 280px; bottom: 40px; }

    .hero-features {
        bottom: -28px;
        max-width: 960px;
        padding: 0 16px;
    }
    .features-bar {
        padding: 8px 12px;
        border-radius: 100px;
        gap: 0;
    }
    .feature-item {
        flex-direction: row;
        gap: 8px;
        padding: 4px 8px;
    }
    .feature-icon { width: 38px; height: 38px; }
    .feature-icon svg { width: 18px !important; height: 18px !important; }
    .feature-title { font-size: 0.74rem; }
    .feature-sub { font-size: 0.64rem; }
    .feature-divider { height: 22px; }
}

@media (max-width: 991px) {
    .hero-features {
        bottom: -22px;
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .hamburger { display: flex; }
    .btn-randevu { display: none; }

    .flower-1 { left: -100px; top: 85px; width: 400px; height: auto; mask-image: none; -webkit-mask-image: none; }
    .flower-2 { left: -70px; bottom: -230px; width: 400px; height: auto; }
    .flower-3 { right: -140px; top: 100px; width: 400px; height: auto; mask-image: none; -webkit-mask-image: none; }
    .flower-4 { right: -140px; bottom: -20px; width: 400px; height: auto; }
    .flower img { height: auto !important; }

    .hero-banner {
        height: auto !important;
        min-height: 720px;
        overflow: hidden;
        background: #eef3fc !important;
    }
    .hero-banner-img-bg img {
        object-position: center 42%;
    }
    .hero-inner { justify-content: flex-start; padding-top: 135px; padding-bottom: 40px; }
    .hero-content {
        padding: 20px 16px 16px;
        margin-top: 0;
    }
    .hero-badge {
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.72) !important;
        border: 1.5px solid rgba(21, 87, 176, 0.25) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .hero-title { 
        font-size: clamp(1.6rem, 6vw, 2.4rem); 
        margin-bottom: 8px; 
        text-shadow: 
            -1.5px -1.5px 0 #ffffff,  
             1.5px -1.5px 0 #ffffff,
            -1.5px  1.5px 0 #ffffff,
             1.5px  1.5px 0 #ffffff,
             0 0 5px #ffffff,
             0 0 10px #ffffff,
             0 0 15px #ffffff,
             0 0 20px rgba(255, 255, 255, 1),
             0 0 30px rgba(255, 255, 255, 1) !important;
    }
    .hero-subtitle { 
        margin-bottom: 16px; 
        text-shadow: 
            -1px -1px 0 #ffffff,  
             1px -1px 0 #ffffff,
            -1px  1px 0 #ffffff,
             1px  1px 0 #ffffff,
             0 0 4px #ffffff,
             0 0 8px #ffffff,
             0 0 12px #ffffff,
             0 0 18px rgba(255, 255, 255, 1),
             0 0 25px rgba(255, 255, 255, 1) !important;
        font-weight: 600;
        color: #0c213a !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
        gap: 10px;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-features {
        bottom: -20px;
        padding: 0 12px;
    }
    .features-bar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        border-radius: 24px;
        padding: 10px 6px;
        gap: 2px;
        box-shadow: 0 12px 30px rgba(27, 42, 74, 0.05);
    }
    .feature-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 2px;
        min-width: 0;
    }
    .feature-text {
        align-items: center;
        text-align: center;
        gap: 1px;
    }
    .feature-divider {
        display: block !important;
        width: 1px;
        height: 24px;
        background: linear-gradient(to bottom, rgba(0, 45, 98, 0) 0%, rgba(0, 45, 98, 0.08) 50%, rgba(0, 45, 98, 0) 100%);
        align-self: center;
        margin: 0;
    }
    .feature-icon {
        width: 38px;
        height: 38px;
        border-width: 1px;
    }
    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2.2px;
    }
    .feature-title {
        font-size: 0.66rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        font-weight: 750;
    }
    .feature-sub {
        font-size: 0.56rem;
        white-space: normal;
        text-align: center;
        display: block;
        line-height: 1.2;
        font-weight: 500;
        margin-top: 1px;
    }
    
    .srv-eyebrow {
        padding: 8px 24px;
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(21, 87, 176, 0.18);
        box-shadow: 0 4px 16px rgba(21, 87, 176, 0.04);
    }
    .srv-eyebrow__text {
        font-size: 0.78rem;
    }
    .srv-badge-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 520px) {
    .navbar {
        width: calc(100% - 24px);
        top: 10px;
        height: 64px;
    }
    .navbar.scrolled {
        top: 10px;
        height: 64px;
    }
    .navbar-container { padding: 0 16px; }
    .logo-img { height: 36px; }
    .navbar.scrolled .logo-img { height: 36px; }

    .flower-1 { left: -100px; top: 85px; width: 400px; height: auto; mask-image: none; -webkit-mask-image: none; }
    .flower-2 { left: -70px; bottom: -250px; width: 400px; height: auto; }
    .flower-3 { right: -117px; top: 22px; width: 400px; height: auto; mask-image: none; -webkit-mask-image: none; }
    .flower-4 { right: -143px; bottom: -20px; width: 400px; height: auto; }
    .flower img { height: auto !important; }

    .hero-banner {
        height: auto !important;
        min-height: 650px;
        overflow: hidden;
        background: #eef3fc !important;
    }
    .hero-banner-img-bg img {
        object-position: 50% 50%;
    }
    .hero-inner { justify-content: flex-start; padding-top: 130px; padding-bottom: 45px; }
    .hero-content {
        padding: 10px 12px 12px;
        margin-top: 0;
    }
    .hero-badge {
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.75) !important;
        border: 1.5px solid rgba(21, 87, 176, 0.25) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .hero-title { 
        font-size: 1.7rem; 
        margin-bottom: 8px; 
        text-shadow: 
            -1.5px -1.5px 0 #ffffff,  
             1.5px -1.5px 0 #ffffff,
            -1.5px  1.5px 0 #ffffff,
             1.5px  1.5px 0 #ffffff,
             0 0 5px #ffffff,
             0 0 10px #ffffff,
             0 0 15px #ffffff,
             0 0 20px rgba(255, 255, 255, 1),
             0 0 30px rgba(255, 255, 255, 1) !important;
    }
    .hero-subtitle { 
        margin-bottom: 14px; 
        font-size: 0.85rem; 
        line-height: 1.4; 
        text-shadow: 
            -1px -1px 0 #ffffff,  
             1px -1px 0 #ffffff,
            -1px  1px 0 #ffffff,
             1px  1px 0 #ffffff,
             0 0 4px #ffffff,
             0 0 8px #ffffff,
             0 0 12px #ffffff,
             0 0 18px rgba(255, 255, 255, 1),
             0 0 25px rgba(255, 255, 255, 1) !important;
        font-weight: 600;
        color: #0c213a !important;
    }

    .hero-features {
        bottom: -15px;
        padding: 0 16px;
    }

    .hero-buttons {
        margin: 0 auto !important;
        gap: 8px;
    }
    .btn-primary, .btn-secondary { font-size: 0.825rem; padding: 10px 18px; }
}

.srv-section {
    padding: 60px 0 45px;
    background: radial-gradient(circle at center, #ffffff 0%, #f7f9fd 60%, #eef3fc 100%);
    position: relative;
    overflow: hidden;
}

.srv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(21, 87, 176, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 176, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

.srv-section::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 87, 176, 0.03) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.srv-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.srv-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.srv-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(21, 87, 176, 0.06) 0%, rgba(249, 115, 22, 0.06) 100%);
    border: 1.5px solid rgba(21, 87, 176, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(21, 87, 176, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.srv-eyebrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(21, 87, 176, 0.08);
    border-color: rgba(249, 115, 22, 0.25);
}

.srv-badge-icon {
    width: 15px;
    height: 15px;
    color: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.25));
    transition: transform 0.3s ease;
}

.srv-eyebrow:hover .srv-badge-icon {
    transform: scale(1.1) rotate(5deg);
}

.srv-eyebrow__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.srv-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.0rem, 4.2vw, 2.8rem);
    font-weight: 300;
    color: var(--dark-navy);
    line-height: 1.15;
    margin: 0 auto 6px;
    letter-spacing: -0.02em;
}

.srv-title__accent {
    color: var(--accent);
    font-weight: 800;
}

.srv-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.srv-card {
    border-radius: 32px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    background: transparent;
    overflow: hidden;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.04), 
        0 2px 8px rgba(0, 0, 0, 0.02);
    
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.96);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
        box-shadow 0.4s ease;
}

.srv-card.play-reveal {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.srv-card.play-reveal:hover {
    transform: translate3d(0, -8px, 0) scale(1.02);
    box-shadow: 
        0 22px 45px rgba(0, 0, 0, 0.08), 
        0 6px 16px rgba(0, 0, 0, 0.02);
}

@media (min-width: 601px) {
    .srv-card:nth-child(1) { transition-delay: 0s; }
    .srv-card:nth-child(2) { transition-delay: 0.08s; }
    .srv-card:nth-child(3) { transition-delay: 0.16s; }
    .srv-card:nth-child(4) { transition-delay: 0.24s; }
    .srv-card:nth-child(5) { transition-delay: 0.32s; }
}

.srv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    transform-origin: center center;
    will-change: transform;
    animation: rotateComposited 4s linear infinite;
    animation-play-state: paused;
}

.srv-card.play-reveal::before {
    animation-play-state: running;
}

.srv-card:has(.srv-card__icon--blue)::before {
    background: conic-gradient(
        from 0deg,
        var(--primary) 0%,
        rgba(255, 255, 255, 0.85) 25%,
        var(--primary) 50%,
        rgba(255, 255, 255, 0.85) 75%,
        var(--primary) 100%
    );
}

.srv-card:has(.srv-card__icon--orange)::before {
    background: conic-gradient(
        from 0deg,
        var(--accent) 0%,
        rgba(255, 255, 255, 0.85) 25%,
        var(--accent) 50%,
        rgba(255, 255, 255, 0.85) 75%,
        var(--accent) 100%
    );
}

.srv-card::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 29px;
    background: #ffffff;
    z-index: 2;
}

@keyframes rotateComposited {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(360deg);
    }
}

@media (min-width: 1025px) {
    .srv-grid {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.srv-card__img-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 210px; 
    border-radius: 20px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid rgba(21, 87, 176, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(21, 87, 176, 0.02);
}

.srv-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent);
    pointer-events: none;
}

.srv-card__body {
    padding: 24px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 3;
}

.srv-card__icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 4px solid #ffffff;
}

.srv-card__icon svg,
.srv-card__icon i {
    width: 28px;
    height: 28px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: currentColor;
}

.srv-card__icon--blue {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(21, 87, 176, 0.25);
}

.srv-card__icon--orange {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.srv-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.38rem; 
    font-weight: 700;
    color: var(--dark-navy);
    margin: 14px 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.srv-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; 
    color: var(--text-mid);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.srv-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
    margin-top: auto;
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease;
}

.srv-card__btn span {
    transition: transform 0.1s ease;
}

.srv-card__btn:hover span,
.srv-card:hover .srv-card__btn span {
    transform: translateX(4px);
}

.srv-card__btn--blue {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border: 1.5px solid rgba(21, 87, 176, 0.22);
    color: var(--primary);
    box-shadow: 0 3px 8px rgba(21, 87, 176, 0.04);
}

.srv-card__btn--blue:hover,
.srv-card:hover .srv-card__btn--blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.25);
}

.srv-card__btn--orange {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f4 100%);
    border: 1.5px solid rgba(249, 115, 22, 0.22);
    color: var(--accent);
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.04);
}

.srv-card__btn--orange:hover,
.srv-card:hover .srv-card__btn--orange {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.srv-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    padding: 12px 32px;
    width: 100%;
    max-width: 1160px;
    margin: 40px auto 0 auto;
    box-shadow: 
        0 20px 45px rgba(27, 42, 74, 0.05), 
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 5;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-trust:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 24px 55px rgba(27, 42, 74, 0.08), 
        0 4px 20px rgba(21, 87, 176, 0.02);
    border-color: rgba(21, 87, 176, 0.16);
}

.srv-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 750;
    color: var(--dark-navy);
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: default;
}

.srv-trust__item:hover {
    color: var(--primary);
}

.srv-trust__icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.srv-trust__item:nth-of-type(1) .srv-trust__icon-wrap { 
    background: linear-gradient(135deg, rgba(21, 87, 176, 0.12) 0%, rgba(21, 87, 176, 0.03) 100%); 
    border-color: rgba(21, 87, 176, 0.2);
    color: var(--primary); 
}
.srv-trust__item:nth-of-type(2) .srv-trust__icon-wrap { 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.03) 100%); 
    border-color: rgba(34, 197, 94, 0.2);
    color: #22c55e; 
}
.srv-trust__item:nth-of-type(3) .srv-trust__icon-wrap { 
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.03) 100%); 
    border-color: rgba(249, 115, 22, 0.2);
    color: var(--accent); 
}
.srv-trust__item:nth-of-type(4) .srv-trust__icon-wrap { 
    background: linear-gradient(135deg, rgba(21, 87, 176, 0.12) 0%, rgba(21, 87, 176, 0.03) 100%); 
    border-color: rgba(21, 87, 176, 0.2);
    color: var(--primary); 
}
.srv-trust__item:nth-of-type(5) .srv-trust__icon-wrap { 
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0.03) 100%); 
    border-color: rgba(234, 179, 8, 0.2);
    color: #eab308; 
}

.srv-trust__item svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.srv-trust__item:hover .srv-trust__icon-wrap {
    transform: scale(1.08) rotate(4deg);
}

.srv-trust__item:nth-of-type(1):hover .srv-trust__icon-wrap { background: var(--primary); color: var(--white); box-shadow: 0 4px 10px rgba(21, 87, 176, 0.3); }
.srv-trust__item:nth-of-type(2):hover .srv-trust__icon-wrap { background: #22c55e; color: var(--white); box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3); }
.srv-trust__item:nth-of-type(3):hover .srv-trust__icon-wrap { background: var(--accent); color: var(--white); box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3); }
.srv-trust__item:nth-of-type(4):hover .srv-trust__icon-wrap { background: var(--primary); color: var(--white); box-shadow: 0 4px 10px rgba(21, 87, 176, 0.3); }
.srv-trust__item:nth-of-type(5):hover .srv-trust__icon-wrap { background: #eab308; color: var(--white); box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3); }

.srv-trust__dot {
    display: block !important;
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(21, 87, 176, 0.12), transparent);
    margin: 0;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .srv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .srv-card:nth-child(even) {
        transform: none;
    }
    .srv-card:nth-child(even):hover,
    .srv-card:nth-child(odd):hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 900px) {
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .srv-trust {
        flex-wrap: wrap;
        border-radius: 24px;
        padding: 20px;
        gap: 16px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(21, 87, 176, 0.08);
    }
    .srv-trust__dot {
        display: none !important;
    }
    .srv-trust__item {
        flex: 0 0 calc(50% - 10px);
        justify-content: flex-start;
        padding: 0 10px;
        font-size: 0.82rem;
    }
}

@media (max-width: 600px) {
    .srv-section {
        padding: 60px 0 45px;
    }
    .srv-header {
        margin-bottom: 30px;
    }
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 0 auto 30px auto;
        align-items: stretch;
    }
    .srv-card {
        border-radius: 20px;
        padding: 8px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .srv-card::after {
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        border-radius: 17px;
    }
    .srv-card__img-wrap {
        height: 185px; 
    }
    .srv-card__body {
        padding: 16px 2px 4px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .srv-card__icon {
        width: 36px;
        height: 36px;
        top: -18px;
        border-width: 2px;
    }
    .srv-card__icon svg,
    .srv-card__icon i {
        width: 16px;
        height: 16px;
        font-size: 15px;
    }
    .srv-card__title {
        font-size: 1.08rem; 
        margin: 6px 0 4px 0;
    }
    .srv-card__desc {
        font-size: 0.84rem; 
        line-height: 1.4;
        margin-bottom: 8px;
        flex-grow: 1;
    }
    .srv-card__btn {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin-top: auto;
    }

    #service-perde::before,
    #service-yatak::before {
        background: conic-gradient(
            from 0deg,
            var(--accent) 0%,
            rgba(255, 255, 255, 0.85) 25%,
            var(--accent) 50%,
            rgba(255, 255, 255, 0.85) 75%,
            var(--accent) 100%
        ) !important;
    }
    
    #service-perde .srv-card__icon,
    #service-yatak .srv-card__icon {
        background: var(--accent) !important;
        box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25) !important;
    }
    
    #service-perde .srv-card__btn,
    #service-yatak .srv-card__btn {
        background: linear-gradient(180deg, #ffffff 0%, #fff9f4 100%) !important;
        border: 1.5px solid rgba(249, 115, 22, 0.22) !important;
        color: var(--accent) !important;
        box-shadow: 0 3px 8px rgba(249, 115, 22, 0.04) !important;
    }
    
    #service-perde:hover .srv-card__btn,
    #service-yatak:hover .srv-card__btn,
    .srv-card:hover #service-perde .srv-card__btn,
    .srv-card:hover #service-yatak .srv-card__btn {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25) !important;
    }

    #service-battaniye::before {
        background: conic-gradient(
            from 0deg,
            var(--primary) 0%,
            rgba(255, 255, 255, 0.85) 25%,
            var(--primary) 50%,
            rgba(255, 255, 255, 0.85) 75%,
            var(--primary) 100%
        ) !important;
    }
    
    #service-battaniye .srv-card__icon {
        background: var(--primary) !important;
        box-shadow: 0 6px 16px rgba(21, 87, 176, 0.25) !important;
    }
    
    #service-battaniye .srv-card__btn {
        background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%) !important;
        border: 1.5px solid rgba(21, 87, 176, 0.22) !important;
        color: var(--primary) !important;
        box-shadow: 0 3px 8px rgba(21, 87, 176, 0.04) !important;
    }
    
    #service-battaniye:hover .srv-card__btn,
    .srv-card:hover #service-battaniye .srv-card__btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        box-shadow: 0 8px 20px rgba(21, 87, 176, 0.25) !important;
    }

    #service-yatak {
        display: none !important;
    }

    .srv-trust__item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
        padding: 0 4px;
        font-size: 0.75rem;
    }
}

.hizmetler-section {
    padding: 110px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #faf9f6 60%, #f7f5f0 100%);
    position: relative;
    overflow: hidden;
}

.hizmetler-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(21, 87, 176, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 176, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

.hizmetler-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 87, 176, 0.02) 0%, transparent 70%);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.hizmetler-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hizmetler-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.hizmetler-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(21, 87, 176, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-badge-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 20px rgba(21, 87, 176, 0.08);
}

.hizmetler-badge-pill .badge-icon {
    font-size: 0.75rem;
}

.hizmetler-badge-pill .badge-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.hizmetler-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark-navy);
    line-height: 1.15;
    margin: 0 auto 12px;
    text-align: center;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95);
}

.title-accent-orange {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.hizmetler-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 20px;
}

.hizmetler-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4) 50%, transparent);
    border-radius: 2px;
}

.hizmetler-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 50px;
    position: relative;
    z-index: 5;
}

.hizmetler-card-premium {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 
        0 10px 40px rgba(27, 42, 74, 0.02), 
        0 1px 3px rgba(27, 42, 74, 0.01);
    position: relative;
    overflow: visible;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-card-inner {
    border: 1px solid rgba(21, 87, 176, 0.06);
    border-radius: 28px;
    margin: 8px;
    padding: 16px;
    height: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1025px) {
    .hizmetler-card-premium:nth-child(even) {
        transform: translateY(35px);
    }
    
    .hizmetler-card-premium:nth-child(even):hover {
        transform: translateY(20px) scale(1.025);
    }
    
    .hizmetler-card-premium:nth-child(odd):hover {
        transform: translateY(-15px) scale(1.025);
    }
}

.hizmetler-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 120px 120px 20px 20px;
    overflow: hidden;
    background: #f7f9fc;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.04);
    transition: border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.hizmetler-card-premium:hover .hizmetler-card-img {
    transform: scale(1.08);
}

.hizmetler-card-medallion {
    position: absolute;
    bottom: -8px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 4px 12px rgba(27, 42, 74, 0.06),
        inset 0 0 0 3px #ffffff,
        inset 0 0 0 4px rgba(21, 87, 176, 0.04);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.medallion-svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-card-premium:hover .hizmetler-card-medallion {
    transform: scale(1.12) rotate(360deg);
    box-shadow: 
        0 8px 20px rgba(27, 42, 74, 0.1),
        inset 0 0 0 3px #ffffff;
}

.hizmetler-card-body {
    padding: 16px 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.hizmetler-card-category {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
    background: #fafaf8;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.hizmetler-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.hizmetler-card-divider {
    width: 25px;
    height: 2px;
    border-radius: 20px;
    margin-bottom: 14px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-card-premium:hover .hizmetler-card-divider {
    width: 50px;
}

.hizmetler-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.hizmetler-card-footer {
    width: 100%;
    margin-top: auto;
}

.hizmetler-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow {
    stroke-width: 2.5px;
    width: 13px;
    height: 13px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-card-premium:hover .btn-arrow {
    transform: translateX(4px);
}

.hizmetler-card-premium.theme-blue .hizmetler-card-medallion {
    border-color: rgba(21, 87, 176, 0.15);
}

.hizmetler-card-premium.theme-blue .medallion-svg {
    stroke: var(--primary);
}

.hizmetler-card-premium.theme-blue .hizmetler-card-category {
    color: var(--primary);
    border-color: rgba(21, 87, 176, 0.1);
    background: rgba(21, 87, 176, 0.02);
}

.hizmetler-card-premium.theme-blue .hizmetler-card-divider {
    background: var(--primary);
}

.hizmetler-card-premium.theme-blue .hizmetler-card-btn {
    color: var(--primary);
}

.hizmetler-card-premium.theme-blue:hover {
    box-shadow: 
        0 20px 45px rgba(21, 87, 176, 0.07),
        0 1px 3px rgba(21, 87, 176, 0.02);
}

.hizmetler-card-premium.theme-blue:hover .hizmetler-card-inner {
    border-color: rgba(21, 87, 176, 0.25);
    box-shadow: inset 0 0 10px rgba(21, 87, 176, 0.01);
}

.hizmetler-card-premium.theme-blue:hover .hizmetler-card-medallion {
    border-color: var(--primary);
}

.hizmetler-card-premium.theme-blue:hover .hizmetler-card-title {
    color: var(--primary);
}

.hizmetler-card-premium.theme-blue:hover .hizmetler-card-btn,
.hizmetler-card-premium.theme-blue .hizmetler-card-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(21, 87, 176, 0.2);
}

.hizmetler-card-premium.theme-orange .hizmetler-card-medallion {
    border-color: rgba(249, 115, 22, 0.15);
}

.hizmetler-card-premium.theme-orange .medallion-svg {
    stroke: var(--accent);
}

.hizmetler-card-premium.theme-orange .hizmetler-card-category {
    color: var(--accent);
    border-color: rgba(249, 115, 22, 0.1);
    background: rgba(249, 115, 22, 0.02);
}

.hizmetler-card-premium.theme-orange .hizmetler-card-divider {
    background: var(--accent);
}

.hizmetler-card-premium.theme-orange .hizmetler-card-btn {
    color: var(--accent);
}

.hizmetler-card-premium.theme-orange:hover {
    box-shadow: 
        0 20px 45px rgba(249, 115, 22, 0.07),
        0 1px 3px rgba(249, 115, 22, 0.02);
}

.hizmetler-card-premium.theme-orange:hover .hizmetler-card-inner {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: inset 0 0 10px rgba(249, 115, 22, 0.01);
}

.hizmetler-card-premium.theme-orange:hover .hizmetler-card-medallion {
    border-color: var(--accent);
}

.hizmetler-card-premium.theme-orange:hover .hizmetler-card-title {
    color: var(--accent);
}

.hizmetler-card-premium.theme-orange:hover .hizmetler-card-btn,
.hizmetler-card-premium.theme-orange .hizmetler-card-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

@media (max-width: 1200px) {
    .hizmetler-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hizmetler-card-premium:nth-child(even) {
        transform: translateY(0);
    }
    .hizmetler-card-premium:nth-child(even):hover,
    .hizmetler-card-premium:nth-child(odd):hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 900px) {
    .hizmetler-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .hizmetler-section {
        padding: 70px 0;
    }
    
    .hizmetler-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hizmetler-card-premium {
        border-radius: 24px;
    }
    
    .hizmetler-card-inner {
        padding: 12px;
        margin: 6px;
        border-radius: 20px;
    }
    
    .hizmetler-card-image-wrapper {
        height: 150px;
        border-radius: 80px 80px 16px 16px;
    }
}

.hizmetler-features-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(0, 45, 98, 0.03);
    box-shadow: 
        0 4px 16px rgba(11, 26, 48, 0.015), 
        0 16px 36px rgba(11, 26, 48, 0.035);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    width: 100%;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}

.hizmetler-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 45, 98, 0.05);
    transition: transform 0.3s ease;
}

.hizmetler-feature-item:last-child {
    border-right: none;
}

.feature-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(21, 87, 176, 0.03);
    border: 1px solid rgba(21, 87, 176, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.feature-icon-svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2px;
    transition: transform 0.3s ease;
}

.hizmetler-feature-item:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(21, 87, 176, 0.12);
}

.hizmetler-feature-item:hover .feature-icon-svg {
    transform: rotate(10deg);
}

.feature-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0px;
}

.feature-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.2;
    white-space: nowrap;
}

.feature-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    color: var(--text-mid);
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .hizmetler-features-bar {
        padding: 10px 16px;
    }
    .hizmetler-feature-item {
        gap: 8px;
        padding: 0 6px;
    }
    .feature-item-title {
        font-size: 0.75rem;
    }
    .feature-item-desc {
        font-size: 0.64rem;
    }
}

@media (max-width: 1024px) {
    .hizmetler-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .hizmetler-features-bar {
        border-radius: 24px;
        flex-wrap: wrap;
        padding: 16px;
        justify-content: center;
        gap: 16px;
    }
    .hizmetler-feature-item {
        flex: none;
        width: 45%;
        border-right: none !important;
        justify-content: flex-start;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hizmetler-section {
        padding: 40px 0;
    }
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hizmetler-features-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border-radius: 20px;
        gap: 12px;
    }
    .hizmetler-feature-item {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 340px;
        margin: 20px auto 0;
    }
    .card-image-wrapper {
        height: 140px;
    }
    .hizmetler-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hizmetler-title {
        font-size: 1.8rem;
    }
    .feature-item-title {
        white-space: normal;
    }
    .feature-item-desc {
        white-space: normal;
    }
}

:root {
    --obsidian-bg: #070B15;
    --obsidian-bg-gradient: linear-gradient(to bottom, #070B15 0%, #05080E 100%);
    --obsidian-card: rgba(13, 22, 43, 0.45);
    --obsidian-card-hover: rgba(22, 38, 77, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(255, 255, 255, 0.18);
    --aurora-blue: rgba(21, 87, 176, 0.15);
    --aurora-orange: rgba(249, 115, 22, 0.12);
    --text-muted: #94a3b8;
    --text-bright: #f8fafc;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(140px);
    will-change: transform;
    transform: translateZ(0);
    opacity: 0.8;
}

.ambient-glow--about {
    background: radial-gradient(circle, var(--aurora-blue) 0%, transparent 70%);
    width: 800px;
    height: 800px;
    top: -100px;
    left: -300px;
}

.ambient-glow--gallery {
    background: radial-gradient(circle, var(--aurora-orange) 0%, transparent 70%);
    width: 950px;
    height: 950px;
    bottom: -200px;
    right: -300px;
}

.ambient-glow--testimonials {
    background: radial-gradient(circle, var(--aurora-blue) 0%, transparent 70%);
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.ambient-glow--booking {
    background: radial-gradient(circle, var(--aurora-orange) 0%, transparent 70%);
    width: 900px;
    height: 900px;
    bottom: -150px;
    left: -250px;
}

.ambient-glow--footer-left {
    background: radial-gradient(circle, var(--aurora-blue) 0%, transparent 70%);
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: -150px;
    opacity: 0.5;
}

.ambient-glow--footer-right {
    background: radial-gradient(circle, var(--aurora-orange) 0%, transparent 70%);
    width: 600px;
    height: 600px;
    top: -100px;
    right: -150px;
    opacity: 0.4;
}

.glass-card-premium {
    background: var(--obsidian-card) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.45), 
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-glow) !important;
    background: var(--obsidian-card-hover) !important;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.55), 
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.about-section {
    padding: 140px 0;
    background-color: var(--white);
    background-image: 
        radial-gradient(circle at top right, rgba(21, 87, 176, 0.05) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
        linear-gradient(rgba(21, 87, 176, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 176, 0.003) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-bubbles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.about-bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    animation: bubbleFloatUp 9s linear infinite;
    animation-play-state: paused;
    
    background: radial-gradient(circle at 35% 30%, 
        rgba(255, 255, 255, 0.90) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0) 70%
    );
    
    border: 1px solid rgba(59, 130, 246, 0.22);
    
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.90),
        inset 0 -4px 10px rgba(59, 130, 246, 0.35),
        inset -4px 0 10px rgba(236, 72, 153, 0.25),
        inset 4px 0 10px rgba(16, 185, 129, 0.20),
        0 4px 12px rgba(12, 30, 61, 0.04);
}

.about-section.play-bubbles .about-bubble {
    animation-play-state: running;
}

.about-bubble::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 15%;
    width: 24%;
    height: 14%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    transform: rotate(-28deg);
}

.about-bubble::after {
    content: '';
    position: absolute;
    bottom: 14%;
    right: 18%;
    width: 12%;
    height: 12%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 75%);
    border-radius: 50%;
}

@keyframes bubbleFloatUp {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    8% {
        opacity: 0.85;
    }
    25% {
        transform: translate3d(calc(var(--drift) * 0.45), -30vh, 0);
    }
    50% {
        transform: translate3d(calc(var(--drift) * -0.25), -60vh, 0);
    }
    75% {
        transform: translate3d(calc(var(--drift) * 0.75), -90vh, 0);
    }
    92% {
        opacity: 0.85;
    }
    100% {
        transform: translate3d(var(--drift, 60px), -125vh, 0);
        opacity: 0;
    }
}

.about-section__grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
}

.about-section__grid-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(21, 87, 176, 0.08) 0%, 
        rgba(21, 87, 176, 0.01) 50%, 
        rgba(21, 87, 176, 0.08) 100%);
}

.about-section__watermark {
    position: absolute;
    top: 8%;
    left: -5%;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(21, 87, 176, 0.02);
    text-stroke: 1px rgba(21, 87, 176, 0.02);
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: 0.12em;
}

.about-section__container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.about-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 56px;
    align-items: center;
}

.about-section__image-side {
    grid-column: span 6;
    position: relative;
    height: 600px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.about-section__image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section__aura {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.09;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(-50px);
}

.about-section__aura--blue {
    background: var(--primary);
    top: 5%;
    left: 10%;
    animation: floatAura1 16s infinite alternate ease-in-out;
}

.about-section__aura--orange {
    background: var(--accent);
    bottom: 5%;
    right: 15%;
    animation: floatAura2 13s infinite alternate ease-in-out;
}

@keyframes floatAura1 {
    0% { transform: translate(0, 0) scale(1) translateZ(-50px); }
    100% { transform: translate(40px, 30px) scale(1.2) translateZ(-50px); }
}

@keyframes floatAura2 {
    0% { transform: translate(0, 0) scale(1.2) translateZ(-50px); }
    100% { transform: translate(-30px, -45px) scale(0.9) translateZ(-50px); }
}

.about-section__bg-shape {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(var(--text-light) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(-30px);
}

.about-section__image-outline {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 82%;
    height: 87%;
    border: 2px solid rgba(21, 87, 176, 0.08);
    border-radius: var(--radius-lg);
    z-index: 0;
    pointer-events: none;
    transform: translateZ(-20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
}

.about-section__image-side:hover .about-section__image-outline {
    transform: translate(-12px, -12px) translateZ(-20px);
    border-color: rgba(249, 115, 22, 0.18);
}

.about-section__image-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(27, 42, 74, 0.08);
    border: 1px solid rgba(21, 87, 176, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.about-section__image-wrapper--primary {
    top: 0;
    left: 0;
    width: 82%;
    height: 87%;
    z-index: 1;
    transform: translate3d(0, 0, 10px);
}

.about-section__image-wrapper--secondary {
    bottom: 0;
    right: 0;
    width: 56%;
    height: 56%;
    z-index: 2;
    border: 6px solid var(--white);
    box-shadow: 0 25px 55px rgba(27, 42, 74, 0.14);
    transform: translate3d(0, 0, 40px) rotate(-1deg);
}

.about-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.about-section__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 42, 74, 0.12) 0%, rgba(27, 42, 74, 0) 100%);
    pointer-events: none;
}

.about-section__image-wrapper--primary:hover {
    transform: translate3d(0, -5px, 20px);
    box-shadow: 0 25px 55px rgba(27, 42, 74, 0.13);
}

.about-section__image-side:hover .about-section__image-wrapper--secondary {
    transform: translate3d(-8px, -8px, 60px) rotate(1deg) scale(1.02);
    box-shadow: 0 30px 65px rgba(27, 42, 74, 0.18);
}

.about-section__image-wrapper:hover .about-section__image {
    transform: scale(1.06) translate3d(0, 0, 0);
}

.about-hygiene-card {
    position: absolute;
    bottom: 12px;
    left: 200px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 22px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 
        0 20px 45px rgba(27, 42, 74, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    width: 240px;
    pointer-events: auto;
    transform: translateZ(80px);
    animation: badgeFloatAlt 6.5s infinite alternate ease-in-out;
}

.about-hygiene-card:hover {
    animation-play-state: paused;
    transform: translateZ(95px) translateY(-6px) scale(1.03);
    border-color: rgba(34, 197, 94, 0.45);
    box-shadow: 0 25px 55px rgba(27, 42, 74, 0.18);
}

.about-hygiene-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.about-hygiene-card__chart {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-hygiene-card__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.about-hygiene-card__bg-circle {
    fill: none;
    stroke: rgba(34, 197, 94, 0.1);
    stroke-width: 3.2;
}

.about-hygiene-card__fill-circle {
    fill: none;
    stroke: #22c55e;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section.in-view .about-hygiene-card__fill-circle {
    stroke-dasharray: 99.9, 100;
}

.about-hygiene-card__percentage {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #15803d;
    letter-spacing: -0.02em;
}

.about-hygiene-card__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-hygiene-card__badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.about-hygiene-card__badge-dot {
    width: 5px;
    height: 5px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: statusIndicatorPulse 1.6s infinite ease-in-out;
}

.about-hygiene-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

@keyframes badgeFloat {
    0% { transform: translate3d(0, 0, 50px); }
    100% { transform: translate3d(0, -10px, 50px); }
}

@keyframes badgeFloatAlt {
    0% { transform: translate3d(0, 0, 80px); }
    100% { transform: translate3d(0, 8px, 80px); }
}

.about-section__badge {
    position: absolute;
    bottom: 50px;
    left: -25px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 36px rgba(27, 42, 74, 0.08), inset 0 1px 0 rgba(255,255,255,0.4);
    min-width: 175px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(60px);
    animation: badgeFloat 6s infinite alternate ease-in-out;
}

.about-section__badge-ring {
    position: absolute;
    inset: -3px;
    border: 1px dashed rgba(249, 115, 22, 0.28);
    border-radius: calc(var(--radius-md) + 3px);
    pointer-events: none;
}

.about-section__badge-svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.about-section__badge-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.about-section__badge-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.about-section__badge:hover {
    animation-play-state: paused;
    transform: translateZ(75px) translateY(-14px) scale(1.03);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 45px rgba(27, 42, 74, 0.15);
}

.about-section__quality-badge {
    position: absolute;
    top: 50px;
    right: 35px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(21, 87, 176, 0.18);
    box-shadow: 0 10px 30px rgba(27, 42, 74, 0.08);
    transform: translateZ(40px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    animation: badgeFloatAlt 7s infinite alternate ease-in-out;
}

.about-section__quality-badge:hover {
    animation-play-state: paused;
    transform: translateZ(55px) translateY(-4px) scale(1.05);
    border-color: rgba(21, 87, 176, 0.38);
    box-shadow: 0 15px 35px rgba(27, 42, 74, 0.13);
}

.about-section__quality-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.about-section__quality-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.about-section__organic-badge {
    position: absolute;
    top: -15px;
    left: 80px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.06);
    transform: translateZ(90px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    animation: badgeFloat 5.5s infinite alternate ease-in-out;
    animation-delay: 0.5s;
}

.about-section__organic-badge-svg {
    color: #22c55e;
    flex-shrink: 0;
}

.about-section__organic-badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #15803d;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-section__organic-badge:hover {
    animation-play-state: paused;
    transform: translateZ(105px) translateY(-5px) scale(1.05);
    border-color: rgba(34, 197, 94, 0.38);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.14);
}

.about-section__content-side {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.about-eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-eyebrow__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--primary);
    text-transform: uppercase;
}

.about-title-container {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 4.8vw, 3.4rem);
    font-weight: 300;
    color: var(--dark-navy);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.03em;
}

.about-title .char {
    display: inline-block;
    transform: translateY(105%) rotate(5deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
    transition-delay: calc(var(--char-index, 0) * 0.04s);
    will-change: transform, opacity;
}

.about-section.in-view .about-title .char {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}

.about-title__accent {
    color: var(--accent);
    font-weight: 800;
}

.about-title-line {
    width: 140px;
    height: 3px;
    background: rgba(21, 87, 176, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 14px;
}

.about-title-line span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: inherit;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.about-section.in-view .about-title-line span {
    width: 100%;
}

.about-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-body-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.04rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-body-text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-feature-cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 44px;
}

.about-feature-card {
    grid-column: span 5;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    border: 1px solid rgba(21, 87, 176, 0.05);
    border-radius: 22px;
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.6s ease, 
                box-shadow 0.6s ease, 
                background 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.01);
}

.about-feature-card--wide {
    grid-column: span 7;
}

.about-status-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--status-color, var(--primary));
    box-shadow: 0 0 8px var(--status-color, var(--primary));
    z-index: 2;
    opacity: 0.65;
}

.about-status-indicator::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--status-color);
    animation: statusIndicatorPulse 2.2s infinite ease-out;
    opacity: 0;
}

@keyframes statusIndicatorPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

.about-feature-card--blue {
    --status-color: #2563eb;
    --hover-pastel: rgba(219, 234, 254, 0.35);
    border-color: rgba(37, 99, 235, 0.16);
}
.about-feature-card--green {
    --status-color: #16a34a;
    --hover-pastel: rgba(220, 252, 231, 0.35);
    border-color: rgba(22, 163, 74, 0.16);
}
.about-feature-card--gold {
    --status-color: #d97706;
    --hover-pastel: rgba(254, 243, 199, 0.35);
    border-color: rgba(217, 119, 6, 0.16);
}
.about-feature-card--orange {
    --status-color: #ea580c;
    --hover-pastel: rgba(255, 237, 213, 0.35);
    border-color: rgba(234, 88, 12, 0.16);
}

.about-feature-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.about-feature-card:hover .about-feature-card__glow {
    opacity: 1;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 87, 176, 0.01) 0%, rgba(249, 115, 22, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.about-feature-card:hover::before {
    opacity: 1;
}

.about-feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(21, 87, 176, 0.22);
    box-shadow: 
        0 24px 48px rgba(21, 87, 176, 0.05),
        0 2px 4px rgba(21, 87, 176, 0.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, var(--hover-pastel) 100%);
}

.about-feature-card--green:hover {
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: 
        0 24px 48px rgba(22, 163, 74, 0.05),
        0 2px 4px rgba(22, 163, 74, 0.02);
}

.about-feature-card--gold:hover {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 
        0 24px 48px rgba(217, 119, 6, 0.05),
        0 2px 4px rgba(217, 119, 6, 0.02);
}

.about-feature-card--orange:hover {
    border-color: rgba(234, 88, 12, 0.25);
    box-shadow: 
        0 24px 48px rgba(234, 88, 12, 0.05),
        0 2px 4px rgba(234, 88, 12, 0.02);
}

.about-feature-card__icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, color 0.4s ease;
}

.about-feature-card--blue .about-feature-card__icon-wrap {
    background: rgba(21, 87, 176, 0.06);
    color: var(--primary);
}

.about-feature-card--green .about-feature-card__icon-wrap {
    background: rgba(22, 163, 74, 0.06);
    color: #16a34a;
}

.about-feature-card--gold .about-feature-card__icon-wrap {
    background: rgba(217, 119, 6, 0.06);
    color: #d97706;
}

.about-feature-card--orange .about-feature-card__icon-wrap {
    background: rgba(234, 88, 12, 0.06);
    color: var(--accent);
}

.about-feature-card__svg {
    width: 20px;
    height: 20px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-card:hover .about-feature-card__icon-wrap {
    transform: scale(1.1) rotate(2deg);
}

.about-feature-card--blue:hover .about-feature-card__icon-wrap {
    background: var(--primary);
    color: var(--white);
}

.about-feature-card--green:hover .about-feature-card__icon-wrap {
    background: #16a34a;
    color: var(--white);
}

.about-feature-card--gold:hover .about-feature-card__icon-wrap {
    background: #d97706;
    color: var(--white);
}

.about-feature-card--orange:hover .about-feature-card__icon-wrap {
    background: var(--accent);
    color: var(--white);
}

.about-feature-card:hover .about-feature-card__svg {
    transform: scale(1.05) rotate(4deg);
}

.about-feature-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.about-feature-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.about-feature-card__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.45;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    align-items: center;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    border: 1px solid rgba(21, 87, 176, 0.05);
    border-radius: 24px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.02);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s ease, 
                box-shadow 0.5s ease,
                background 0.5s ease;
    will-change: transform;
    z-index: 2;
}

.about-stat-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(21, 87, 176, 0.03) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-stat-card__icon {
    font-size: 1.42rem;
    margin-bottom: 8px;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.04));
}

.about-stat-card__number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-stat-card--blue .about-stat-card__number {
    color: var(--primary);
}

.about-stat-card--orange .about-stat-card__number {
    color: var(--accent);
}

.about-stat-card__label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.25;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(21, 87, 176, 0.18);
    box-shadow: 0 16px 36px rgba(27, 42, 74, 0.06);
}

.about-stat-card--blue:hover {
    border-color: rgba(21, 87, 176, 0.22);
    box-shadow: 0 20px 40px rgba(21, 87, 176, 0.06);
}

.about-stat-card--orange:hover {
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.06);
}

.about-stat-card:hover .about-stat-card__glow {
    opacity: 1;
}

.about-stat-card--orange .about-stat-card__glow {
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
}

.about-stat-card--featured {
    padding: 32px 18px;
    border-color: rgba(249, 115, 22, 0.18);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 243, 199, 0.35) 100%);
    z-index: 3;
}

.about-stat-card--featured .about-stat-card__glow {
    opacity: 0.45;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

.about-stat-card--featured:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.38) !important;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.12) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 243, 199, 0.55) 100%) !important;
}

.gallery-section {
    padding: 30px 0 45px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background-color: #ffffff;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 830px;
    background-image: url('../before-after-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

.gallery-section__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.gallery-section__header-premium {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ba-header-badge {
    background-color: #ffffff;
    border: 1.5px solid rgba(249, 115, 22, 0.45);
    border-radius: 50px;
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ba-header-badge__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f2c59;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-badge-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.ba-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #0d2752;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ba-title-accent {
    color: #f97316;
    font-weight: 800;
}

.ba-subtitle-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 450;
}

.ba-slider-container-mockup {
    max-width: 980px;
    margin: 0 auto 28px auto;
    border: 3.5px solid #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 520px; 
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    container-type: inline-size;
}

.ba-slider__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider__img--after {
    z-index: 1;
}

.ba-slider__before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    transition: none;
}

.ba-slider__img--before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100cqw !important;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
}

.ba-slider__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    margin: 0;
}

.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2.5px;
    background-color: #ffffff;
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: none;
}

.ba-slider__handle-line {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.ba-slider__handle-button-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2.5px solid #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: #f97316;
}

.ba-slider__handle-button-mockup svg {
    width: 18px;
    height: 18px;
}

.ba-badge-mockup {
    position: absolute;
    bottom: 24px;
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    color: #0c1e3d;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.12);
    pointer-events: none;
    z-index: 6;
}

.ba-badge-mockup--before {
    left: 24px;
}

.ba-badge-mockup--after {
    right: 24px;
}

.ba-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.ba-badge-dot--before {
    background-color: #1557b0;
}

.ba-badge-dot--after {
    background-color: #f97316;
}

.ba-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.ba-feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(249, 115, 22, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.06), 0 3px 10px rgba(0, 0, 0, 0.02);
}

.ba-feature-card__icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.ba-icon-bg--blue {
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.ba-icon-bg--green {
    background-color: rgba(22, 163, 74, 0.08);
    color: #16a34a;
}

.ba-icon-bg--orange {
    background-color: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}

.ba-feature-card__icon-wrap svg {
    width: 20px;
    height: 20px;
}

.ba-feature-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0e2752;
}

.ba-feature-card__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
}

.ba-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.ba-cta-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff781e 0%, #f95a00 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    outline: none;
}

.ba-cta-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.ba-cta-btn-premium svg {
    width: 18px;
    height: 18px;
}

.ba-cta-subtext {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-cta-subtext__tick {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .ba-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ba-slider {
        height: 440px;
    }
    .ba-main-title {
        font-size: 2.8rem;
    }
    .gallery-section::before {
        height: 740px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 30px 0 40px 0;
    }
    .ba-slider {
        height: 380px;
    }
    .ba-main-title {
        font-size: 2.4rem;
    }
    .gallery-section::before {
        height: 660px;
        background-image: url('../mobil-before-after.png');
    }
}

@media (max-width: 520px) {
    .ba-features-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ba-slider {
        height: 280px;
    }
    .ba-main-title {
        font-size: 2rem;
    }
    .ba-badge-mockup {
        padding: 6px 12px;
        font-size: 0.75rem;
        bottom: 16px;
    }
    .ba-badge-mockup--before {
        left: 16px;
    }
    .ba-badge-mockup--after {
        right: 16px;
    }
    .ba-cta-btn-premium {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .gallery-section::before {
        height: 520px;
        background-image: url('../mobil-before-after.png');
    }
}

.testimonials-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at 15% 40%, rgba(21, 87, 176, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 15%, rgba(249, 115, 22, 0.03) 0%, transparent 55%),
                radial-gradient(circle at center, #ffffff 0%, #f7f9fd 60%, #eef3fc 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(21, 87, 176, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 176, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(21, 87, 176, 0.025) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.testimonials-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(21, 87, 176, 0.04);
    border: 1px solid rgba(21, 87, 176, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(21, 87, 176, 0.02);
    animation: badgePulse 2s infinite ease-in-out;
}

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

.gr-stars {
    display: flex;
    gap: 2px;
}

.gr-star {
    fill: #eab308;
    width: 15px;
    height: 15px;
}

.gr-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0e2752;
}

.testimonials-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    position: relative;
    z-index: 5;
}

.filter-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    border: 1.5px solid rgba(21, 87, 176, 0.06);
    padding: 10px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 45, 98, 0.005);
}

.filter-pill:hover {
    background-color: #ffffff;
    border-color: rgba(37, 99, 235, 0.25);
    color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.05);
}

.filter-pill.active {
    background: linear-gradient(135deg, #1557b0 0%, #0d47a1 100%);
    border-color: #1557b0;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.2);
}

.review-card {
    padding: 40px 40px 40px 48px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    background: #ffffff;
    border: 1px solid rgba(21, 87, 176, 0.07);
    box-shadow: 0 8px 32px rgba(0, 45, 98, 0.03);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: 
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    z-index: 1;
}

.review-card.play-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.08s; }
.review-card:nth-child(3) { transition-delay: 0.16s; }
.review-card:nth-child(4) { transition-delay: 0.24s; }
.review-card:nth-child(5) { transition-delay: 0.32s; }
.review-card:nth-child(6) { transition-delay: 0.40s; }

.review-card-outer {
    position: relative;
    border-radius: 28px;
    padding: 2px;
    overflow: hidden;
    height: 100%;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #1557b0 0%, #3b82f6 100%);
    border-radius: 28px 0 0 28px;
    transition: width 0.3s ease;
    z-index: 2;
}

.review-card:hover::before {
    width: 7px;
}

.review-card--orange::before {
    background: linear-gradient(to bottom, #f97316 0%, #ff9d5c 100%);
}

.review-card__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card--blue .review-card__glow {
    background: radial-gradient(circle, rgba(21, 87, 176, 0.07) 0%, transparent 70%);
}

.review-card--orange .review-card__glow {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
}

.review-card:hover .review-card__glow {
    opacity: 1;
}

.review-card__quote-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 60px;
    height: 60px;
    color: rgba(21, 87, 176, 0.018) !important;
    pointer-events: none;
    z-index: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.review-card:hover .review-card__quote-icon {
    color: rgba(21, 87, 176, 0.04) !important;
    transform: scale(1.08) rotate(-5deg);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.review-card__stars {
    display: flex;
    gap: 4px;
}

.review-star {
    fill: #eab308;
    width: 17px;
    height: 17px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover .review-star:nth-child(1) { transform: scale(1.2) rotate(4deg); transition-delay: 0.01s; }
.review-card:hover .review-star:nth-child(2) { transform: scale(1.2) rotate(-4deg); transition-delay: 0.03s; }
.review-card:hover .review-star:nth-child(3) { transform: scale(1.2) rotate(6deg); transition-delay: 0.05s; }
.review-card:hover .review-star:nth-child(4) { transform: scale(1.2) rotate(-6deg); transition-delay: 0.07s; }
.review-card:hover .review-star:nth-child(5) { transform: scale(1.2) rotate(8deg); transition-delay: 0.09s; }

.review-card__service-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 50px;
}

.review-card__service-tag--blue {
    background-color: rgba(21, 87, 176, 0.05);
    color: #1557b0;
    border: 1px solid rgba(21, 87, 176, 0.08);
}

.review-card__service-tag--orange {
    background-color: rgba(249, 115, 22, 0.05);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.08);
}

.review-card__body {
    flex-grow: 1;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.review-card__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1e293b;
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(21, 87, 176, 0.06);
    padding-top: 24px;
    position: relative;
    z-index: 2;
}

.review-card__user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 45, 98, 0.05);
    position: relative;
}

.review-card__user-avatar--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1557b0 100%);
    border: 2px solid #ffffff;
}

.review-card__user-avatar--orange {
    background: linear-gradient(135deg, #ff781e 0%, #ea580c 100%);
    border: 2px solid #ffffff;
}

.review-card__user-info {
    display: flex;
    flex-direction: column;
}

.review-card__user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0e2752;
    margin-bottom: 2px;
}

.review-card__user-verify {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-card__user-verify svg {
    stroke-width: 3.5;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(21, 87, 176, 0.15) !important;
    background: #ffffff !important;
    box-shadow: 0 25px 50px rgba(0, 45, 98, 0.04) !important;
}

.review-card--blue:hover {
    border-color: rgba(37, 99, 235, 0.22) !important;
    box-shadow: 0 25px 50px rgba(21, 87, 176, 0.08) !important;
}

.review-card--orange:hover {
    border-color: rgba(249, 115, 22, 0.22) !important;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.06) !important;
}

.booking-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 80% 60%, rgba(21, 87, 176, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 55%),
                linear-gradient(to bottom, #f4f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(21, 87, 176, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 176, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

.booking-section__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.booking-dashboard {
    padding: 60px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    will-change: transform;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 87, 176, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        0 30px 80px rgba(0, 45, 98, 0.06),
        0 0 0 1px rgba(255,255,255,0.7) inset;
    
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-dashboard.play-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.booking-dashboard__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(21, 87, 176, 0.035) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.025) 0%, transparent 60%);
    pointer-events: none;
}

.booking-section__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: stretch;
}

.booking-section__form-side {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
}

.booking-section__label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    color: #ea580c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.booking-section__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: #0e2752;
    line-height: 1.25;
    margin-bottom: 16px;
}

.booking-section__title-accent {
    font-weight: 800;
    color: #1557b0;
}

.booking-section__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 36px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.booking-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.booking-form__group {
    position: relative;
    width: 100%;
}

.booking-form__input,
.booking-form__textarea,
.booking-form__select {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 18px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #0e2752;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 45, 98, 0.005);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-form__input[type="date"] {
    color-scheme: light;
}

.booking-form__textarea {
    height: 120px;
    resize: none;
}

.booking-form__select {
    height: 57px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    color: #475569;
}

.booking-form__select:focus,
.booking-form__select:valid {
    color: #0e2752;
}

.booking-form__select option {
    background-color: #ffffff;
    color: #0e2752;
}

.booking-form__label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #475569;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), font-size 0.25s ease, color 0.25s ease;
    transform-origin: left top;
}

.booking-form__input:focus ~ .booking-form__label,
.booking-form__input:not(:placeholder-shown) ~ .booking-form__label,
.booking-form__textarea:focus ~ .booking-form__label,
.booking-form__textarea:not(:placeholder-shown) ~ .booking-form__label {
    transform: translateY(-28px) scale(0.85);
    color: #475569;
    font-weight: 600;
}

#booking-name:focus,
#booking-date:focus,
#booking-address:focus,
#booking-time:focus {
    border-color: #1557b0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(21, 87, 176, 0.08), 0 0 0 4px rgba(21, 87, 176, 0.05);
    transform: translateY(-2px);
}

#booking-name:focus ~ .booking-form__label,
#booking-date:focus ~ .booking-form__label,
#booking-address:focus ~ .booking-form__label,
#booking-time:focus ~ .booking-form__label {
    color: #1557b0;
}

#booking-phone:focus {
    border-color: #f97316;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08), 0 0 0 4px rgba(249, 115, 22, 0.06);
    transform: translateY(-2px);
}

#booking-phone:focus ~ .booking-form__label {
    color: #f97316;
}

.booking-form__service-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-form__section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-form__service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-pill {
    cursor: pointer;
    width: 100%;
}

.service-pill__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-pill__card {
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 4px rgba(0, 45, 98, 0.005);
}

.service-pill__icon {
    font-size: 1.45rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-pill__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 750;
    color: #475569;
}

.service-pill:hover .service-pill__card {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.02);
}

.service-pill:hover .service-pill__icon {
    transform: scale(1.2) rotate(4deg);
}

.service-pill__radio:checked + .service-pill__card {
    border-color: #1557b0;
    background-color: rgba(21, 87, 176, 0.035) !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(21, 87, 176, 0.08) !important;
}

.service-pill__radio:checked + .service-pill__card .service-pill__text {
    color: #1557b0;
}

.service-pill:nth-child(2) .service-pill__radio:checked + .service-pill__card {
    border-color: #f97316;
    background-color: rgba(249, 115, 22, 0.035) !important;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08) !important;
}
.service-pill:nth-child(2) .service-pill__radio:checked + .service-pill__card .service-pill__text {
    color: #ea580c;
}

.service-pill:nth-child(4) .service-pill__radio:checked + .service-pill__card {
    border-color: #f97316;
    background-color: rgba(249, 115, 22, 0.035) !important;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08) !important;
}
.service-pill:nth-child(4) .service-pill__radio:checked + .service-pill__card .service-pill__text {
    color: #ea580c;
}

.booking-form__submit-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1557b0 0%, #f97316 100%) !important;
    background-size: 200% auto !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px;
    padding: 18px 38px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
}

.booking-form__submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.booking-form__submit-btn:hover::after {
    left: 125%;
}

.booking-form__btn-arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-form__submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(21, 87, 176, 0.25) !important;
}

.booking-form__submit-btn:hover .booking-form__btn-arrow {
    transform: translateX(6px) scale(1.1);
}

.booking-form__submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.booking-form__message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.booking-form__message--success {
    background-color: rgba(22, 163, 74, 0.06);
    border: 1.5px solid rgba(22, 163, 74, 0.15);
    color: #15803d;
    border-radius: 12px;
}

.booking-form__message--error {
    background-color: rgba(220, 38, 38, 0.06);
    border: 1.5px solid rgba(220, 38, 38, 0.15);
    color: #b91c1c;
    border-radius: 12px;
}

.booking-section__info-side {
    grid-column: span 5;
}

.contact-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 87, 176, 0.08);
    box-shadow: 0 20px 50px rgba(0, 45, 98, 0.05);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    opacity: 0;
    transform: translateX(30px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.contact-card.play-reveal {
    opacity: 1;
    transform: translateX(0);
}

.contact-card__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-card__logo-wrap {
    padding: 18px 30px;
    background: #ffffff !important;
    border: 1px solid rgba(21, 87, 176, 0.08) !important;
    border-radius: 20px 20px 4px 4px;
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.03) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-card__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 45, 98, 0.05));
}

.contact-card__brand-divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1557b0 0%, #f97316 100%);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.contact-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #0e2752;
    margin-bottom: 12px;
}

.contact-card__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.contact-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
    padding: 0;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item__circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item__circle-icon--blue {
    background-color: rgba(21, 87, 176, 0.05);
    color: #1557b0;
    border: 1px solid rgba(21, 87, 176, 0.1);
}

.contact-item__circle-icon--orange {
    background-color: rgba(249, 115, 22, 0.05);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.contact-item:hover .contact-item__circle-icon {
    transform: scale(1.1) rotate(-10deg);
}

.contact-item__svg {
    width: 18px;
    height: 18px;
}

.contact-item__content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-item__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-item__link,
.contact-item__text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0e2752;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item__link:hover {
    color: #1557b0;
}

.contact-item__circle-icon--orange + .contact-item__content .contact-item__link:hover {
    color: #f97316;
}

.contact-card__socials {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(21, 87, 176, 0.08);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 45, 98, 0.02);
}

.social-icon:hover {
    background-color: #1557b0;
    color: #ffffff;
    border-color: #1557b0;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.15);
}

.social-icon[aria-label="WhatsApp"]:hover {
    background-color: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(204, 35, 102, 0.2);
}

.social-icon[aria-label="Facebook"]:hover {
    background-color: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
}

.footer-section {
    background-color: #05080E;
    color: var(--text-muted);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
}

.footer-section__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.footer-section__grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.3fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-section__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-section__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-section__text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-section__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.footer-section__col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    position: relative;
    letter-spacing: 0.02em;
}

.footer-section__col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-section__col:nth-of-type(3) .footer-section__col-title::after {
    background-color: var(--primary);
}

.footer-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-section__link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-section__link:hover {
    color: var(--text-bright);
    padding-left: 8px;
}

.footer-section__col:nth-of-type(2) .footer-section__link:hover {
    color: #fb923c;
}
.footer-section__col:nth-of-type(3) .footer-section__link:hover {
    color: #60a5fa;
}

.footer-section__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
    transition: all 0.2s ease;
}

.footer-section__cta-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.footer-section__divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.06) 50%, transparent);
    margin-bottom: 30px;
}

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

.footer-section__copy,
.footer-section__author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-section__author a {
    color: var(--text-bright);
    text-decoration: none;
}

.hizmetler-features-bar {
    will-change: transform;
    transform: translateZ(0);
}

.hizmetler-card-btn {
    transition: all 0.12s ease-out !important;
}
.btn-arrow {
    transition: transform 0.12s ease-out !important;
}

@media (max-width: 1024px) {
    .about-section {
        padding: 90px 0;
    }
    .about-section__grid {
        gap: 36px;
    }
    .about-section__image-side {
        height: 450px;
    }
    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 40px auto 0;
        gap: 36px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .booking-dashboard {
        padding: 40px;
    }
    .booking-section__grid {
        gap: 36px;
    }
    .booking-section__form-side {
        grid-column: span 12;
        margin-bottom: 24px;
    }
    .booking-section__info-side {
        grid-column: span 12;
    }
    .footer-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .about-section__container {
        padding: 0 20px !important;
    }
    .about-feature-card,
    .about-feature-card--wide {
        grid-column: span 12 !important;
    }
    .reveal-item-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .about-section__image-side {
        grid-column: span 12;
        order: 1;
        margin-bottom: 40px;
        height: 450px;
    }
    .about-section__content-side {
        grid-column: span 12;
        order: 2;
    }
    .about-section__image-wrapper--secondary {
        border-width: 4px;
        width: 65%;
        height: 65%;
        bottom: -35px;
        right: 0;
    }
    .about-section__badge {
        top: 15px;
        bottom: auto;
        left: -10px;
        padding: 10px 16px;
        min-width: 110px;
    }
    .about-hygiene-card {
        left: -10px;
        bottom: -20px;
        top: auto;
        width: 190px;
        padding: 10px 12px;
        gap: 10px;
    }
    .about-hygiene-card__chart {
        width: 38px;
        height: 38px;
    }
    .about-hygiene-card__percentage {
        font-size: 0.68rem;
    }
    .about-hygiene-card__badge {
        font-size: 0.58rem;
    }
    .about-hygiene-card__title {
        font-size: 0.76rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 24px;
    }

    .about-section__image-side {
        perspective: none !important;
        transform-style: flat !important;
    }
    .about-section__image-frame {
        transform-style: flat !important;
        transform: none !important;
        transition: none !important;
    }
    .about-section__image-wrapper,
    .about-section__image-wrapper--secondary {
        transform: none !important;
        transition: none !important;
    }
    .about-section__image-side:hover .about-section__image-wrapper--secondary,
    .about-section__image-side:hover .about-section__image-outline {
        transform: none !important;
    }
    .about-section__badge,
    .about-hygiene-card,
    .about-section__quality-badge,
    .about-section__organic-badge {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
        animation: none !important;
        transform: none !important;
    }
    .about-section__badge:hover,
    .about-hygiene-card:hover,
    .about-section__quality-badge:hover,
    .about-section__organic-badge:hover {
        transform: none !important;
        box-shadow: 0 10px 25px rgba(27, 42, 74, 0.08) !important;
    }
    .nb-bubbles-bg, .nb-bubble {
        display: none !important;
    }
    .calc-subservices-grid {
        display: none !important;
    }
    .calc-select-mobile {
        display: block !important;
        width: 100%;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        color: var(--dark-navy);
        background: #ffffff;
        border: 1px solid rgba(21, 87, 176, 0.15);
        border-radius: 12px;
        padding: 10px 14px;
        outline: none;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(21, 87, 176, 0.02);
        margin-top: 6px;
        appearance: auto;
        -webkit-appearance: auto;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 80px 0;
    }
    .ba-slider {
        height: 300px;
    }
    .testimonials-section {
        padding: 80px 0;
    }
    .booking-section {
        padding: 80px 0;
    }
    .booking-form__row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .booking-form__service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .contact-card {
        padding: 30px;
    }
    .booking-form__submit-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .about-section {
        padding: 70px 0;
    }
    .about-section__image-side {
        height: 390px;
    }
    .about-section__image-wrapper--secondary {
        border-width: 3px;
        width: 65%;
        height: 65%;
        bottom: -30px;
        right: 0;
    }
    .about-section__badge {
        top: 15px;
        bottom: auto;
        left: -10px;
        padding: 8px 12px;
        min-width: 100px;
    }
    .about-section__badge-svg {
        width: 16px;
        height: 16px;
    }
    .about-section__badge-number {
        font-size: 1.4rem;
    }
    .about-section__badge-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    .about-hygiene-card {
        left: -10px;
        bottom: -15px;
        top: auto;
        width: 180px;
        padding: 8px 10px;
        gap: 8px;
    }
    .about-hygiene-card__chart {
        width: 34px;
        height: 34px;
    }
    .about-hygiene-card__percentage {
        font-size: 0.6rem;
    }
    .about-hygiene-card__badge {
        font-size: 0.55rem;
    }
    .about-hygiene-card__title {
        font-size: 0.7rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-feature-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .footer-section {
        padding: 60px 0 30px;
    }
    .footer-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-section__bottom {
        flex-direction: column;
        text-align: center;
    }
}

.neden-biz-section {
    padding: 50px 0;
    background-image: url('../bg2.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1101px) {
    .neden-biz-section {
        background-size: 100% 100%;
        padding: 40px 0;
    }
}

.nb-bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.nb-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 255, 0.4) 60%, rgba(210, 225, 255, 0.2) 100%);
    box-shadow: inset -5px -5px 15px rgba(0, 45, 98, 0.05),
                inset 5px 5px 15px rgba(255, 255, 255, 0.8),
                0 10px 20px rgba(0, 45, 98, 0.03);
    animation: floatBubble 12s infinite ease-in-out;
    will-change: transform;
}
.nb-bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}
.nb-bubble--1 { width: 60px; height: 60px; top: 15%; right: 10%; animation-duration: 14s; animation-delay: 0s; }
.nb-bubble--2 { width: 40px; height: 40px; top: 25%; right: 15%; animation-duration: 10s; animation-delay: 2s; }
.nb-bubble--3 { width: 80px; height: 80px; bottom: 10%; left: 5%; animation-duration: 16s; animation-delay: 1s; }
.nb-bubble--4 { width: 30px; height: 30px; bottom: 30%; left: 12%; animation-duration: 8s; animation-delay: 3s; }
.nb-bubble--5 { width: 50px; height: 50px; top: 5%; left: 25%; animation-duration: 12s; animation-delay: 4s; }

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-20px) scale(1.05) rotate(10deg); }
}

.nb-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nb-header {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nb-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.04) 0%, rgba(37, 99, 235, 0.04) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.12);
    padding: 7px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.nb-eyebrow-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.07) 0%, rgba(37, 99, 235, 0.07) 100%);
}
.nb-eyebrow-badge span:nth-of-type(1) {
    color: #16a34a;
}
.nb-eyebrow-badge span:nth-of-type(2) {
    color: #0c1e3d;
}
.nb-eyebrow-badge span:nth-of-type(3) {
    color: #2563eb;
}
.nb-eyebrow-badge__icon {
    color: #22c55e;
    flex-shrink: 0;
}
.nb-eyebrow-badge__dot {
    color: #94a3b8;
    margin: 0 2px;
    font-size: 1.1rem;
    line-height: 1;
}
.nb-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 3.2rem);
    font-weight: 300;
    color: var(--dark-navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.2;
}
.nb-title-accent {
    color: #f97316;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
}
.nb-title-leaf {
    color: #22c55e;
    display: inline-flex;
    transform: rotate(20deg) translateY(-8px);
    animation: swayLeaf 4s infinite ease-in-out;
}
@keyframes swayLeaf {
    0%, 100% { transform: rotate(20deg) translateY(-8px); }
    50% { transform: rotate(35deg) translateY(-10px) translateX(2px); }
}
.nb-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.nb-grid {
    display: grid;
    grid-template-columns: 1fr 1.38fr 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 36px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}
.nb-col-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nb-service-card {
    background: #ffffff;
    border: 1.5px solid rgba(12, 30, 61, 0.08);
    border-radius: 28px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 30, 61, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 200px;
    cursor: pointer;
    z-index: 2;
    text-decoration: none;
    color: inherit;
}
.nb-service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(12, 30, 61, 0.12);
    border-color: rgba(12, 30, 61, 0.20);
    z-index: 5;
}
.nb-service-card__content {
    width: 56%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}
.nb-service-card:hover .nb-service-card__content {
    transform: scale(1.04);
}
.nb-service-card__icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.nb-service-card__icon-badge--blue {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #2563eb;
}
.nb-service-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    color: #0c1e3d;
    margin-bottom: 8px;
    line-height: 1.35;
    text-align: left;
    letter-spacing: -0.01em;
}
.nb-service-card__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 400;
}
.nb-service-card__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.nb-service-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nb-service-card:hover .nb-service-card__image-wrap img {
    transform: scale(1.08);
}
.nb-service-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    transition: background 0.4s ease;
}
.nb-service-card:hover .nb-service-card__image-overlay {
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 100%);
}
 
.nb-service-card__arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.nb-service-card:hover .nb-service-card__arrow {
    background: #f97316;
    border-color: #f97316;
    color: var(--white);
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.25);
}

.nb-col-center {
    display: flex;
    align-items: stretch;
}
.nb-center-card {
    width: 100%;
    position: relative;
    border-radius: 28px;
    background-image: url('../banner.png');
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    border: 1.5px solid rgba(12, 30, 61, 0.08);
    box-shadow: 0 12px 35px rgba(120, 110, 90, 0.04);
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: flex-start;
    padding: 28px;
    min-height: 420px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nb-center-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 45px rgba(12, 30, 61, 0.08);
    border-color: rgba(12, 30, 61, 0.16);
}
.nb-center-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
}
.nb-center-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(12, 30, 61, 0.06);
    border-radius: 24px;
    padding: 28px;
    max-width: 410px;
    box-shadow: 0 15px 35px rgba(0, 45, 98, 0.06);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nb-center-card:hover .nb-center-info-card {
    border-color: rgba(12, 30, 61, 0.12);
    box-shadow: 0 20px 40px rgba(12, 30, 61, 0.08);
}
.nb-center-info-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: auto;
}
.nb-badge-blue {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.04);
    border: 1.5px solid rgba(37, 99, 235, 0.15);
    color: #1d4ed8;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.nb-badge-blue:hover {
    transform: translateY(-1px);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}
.nb-badge-blue__icon {
    color: #2563eb;
}
.nb-center-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.68rem;
    font-weight: 800;
    color: #0c1e3d;
    margin-bottom: 12px;
    line-height: 1.25;
    text-align: left;
    letter-spacing: -0.01em;
}
.nb-center-title span {
    color: #f97316;
}
.nb-center-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 16px;
    text-align: left;
    font-weight: 400;
}
.nb-center-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.nb-center-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #334155;
    font-weight: 600;
    text-align: left;
}
.nb-center-list-icon {
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nb-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
    z-index: 2;
    position: relative;
}
.nb-feature-item {
    background: #ffffff;
    border: 1.5px solid rgba(12, 30, 61, 0.08);
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 25px rgba(12, 30, 61, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
}
.nb-feature-item:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(12, 30, 61, 0.06);
    border-color: rgba(12, 30, 61, 0.16);
}
.nb-feature-item__icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.nb-feature-item:hover .nb-feature-item__icon-wrapper {
    transform: scale(1.08);
}
.nb-feature-item__icon-wrapper--green {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: #16a34a;
}
.nb-feature-item__icon-wrapper--orange {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    color: #f97316;
}
.nb-feature-item__icon-wrapper--blue {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #2563eb;
}
.nb-feature-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nb-feature-item__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0c1e3d;
    margin-bottom: 6px;
    line-height: 1.3;
    text-align: left;
}
.nb-feature-item__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

.nb-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 0px;
    z-index: 2;
    position: relative;
}
.nb-stat-item {
    background: #ffffff;
    border: 1.5px solid rgba(12, 30, 61, 0.08);
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 25px rgba(12, 30, 61, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
}
.nb-stat-item:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(12, 30, 61, 0.06);
    border-color: rgba(12, 30, 61, 0.16);
}
.nb-stat-item__icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.nb-stat-item:hover .nb-stat-item__icon-wrapper {
    transform: scale(1.08);
}
.nb-stat-item__icon-wrapper--green {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: #16a34a;
}
.nb-stat-item__icon-wrapper--orange {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    color: #f97316;
}
.nb-stat-item__icon-wrapper--blue {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #2563eb;
}
.nb-stat-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nb-stat-item__number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
    margin-bottom: 4px;
}
.nb-stat-item:nth-child(2) .nb-stat-item__number {
    color: #16a34a;
}
.nb-stat-item:nth-child(3) .nb-stat-item__number {
    color: #2563eb;
}
.nb-stat-item:nth-child(4) .nb-stat-item__number {
    color: #f97316;
}
.nb-stat-item__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0c1e3d;
    margin-bottom: 4px;
    line-height: 1.2;
    text-align: left;
}
.nb-stat-item__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .nb-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .nb-col-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .nb-features-row, .nb-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .nb-center-card {
        min-height: 400px;
    }
}
@media (max-width: 768px) {
    .nb-title {
        font-size: 2.2rem;
    }
    .nb-col-side {
        grid-template-columns: 1fr;
    }
    .nb-features-row, .nb-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .nb-feature-item, .nb-stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 12px;
        gap: 10px;
    }
    .nb-feature-item__content, .nb-stat-item__content {
        align-items: center;
    }
    .nb-feature-item__title, .nb-stat-item__title {
        text-align: center;
        font-size: 0.95rem;
    }
    .nb-feature-item__desc, .nb-stat-item__desc {
        text-align: center;
        font-size: 0.75rem;
    }
    .nb-stat-item__number {
        font-size: 1.25rem;
    }
    .nb-center-card {
        padding: 20px;
        min-height: 380px;
        background-position: 30% center;
    }
    .nb-center-info-card {
        padding: 24px;
    }
    .nb-center-title {
        font-size: 1.45rem;
    }
}

.surec-section {
    padding: 100px 0;
    background: var(--white);
}
.surec-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.surec-header {
    text-align: center;
    margin-bottom: 60px;
}
.surec-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.surec-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
}
.surec-title-accent {
    color: var(--accent);
}
.surec-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 450;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(0, 45, 98, 0.05);
    padding: 40px 30px;
    position: relative;
    transition: all var(--transition);
}
.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 115, 232, 0.2);
    box-shadow: var(--shadow-md);
}
.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(26, 115, 232, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: color var(--transition);
}
.process-step:hover .step-num {
    color: rgba(249, 115, 22, 0.15);
}
.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 14px;
    margin-top: 10px;
}
.step-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 400;
}

.calc-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4fa 0%, #e6effd 100%);
    position: relative;
}
.calc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.calc-info-side {
    max-width: 500px;
}
.calc-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.calc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}
.calc-title-accent {
    color: var(--accent);
}
.calc-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}
.calc-pricing-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.pricing-badge-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(26, 115, 232, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark);
}
.pricing-badge-item strong {
    color: var(--primary);
    font-weight: 700;
}

.calc-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.calc-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1557b0 100%);
    color: var(--white);
    padding: 24px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}
.calc-card-body {
    padding: 36px;
}
.calc-control-group {
    margin-bottom: 24px;
}
.calc-control-group label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.calc-val {
    color: var(--primary);
    background: rgba(26, 115, 232, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
}
.calc-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition);
}
.calc-select:focus {
    border-color: var(--primary);
}
.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #cbd5e1;
    outline: none;
    accent-color: var(--accent);
    cursor: pointer;
    display: block;
}

.calc-result-box {
    background: rgba(249, 115, 22, 0.04);
    border: 1.5px dashed rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}
.result-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.result-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
}
.result-note {
    font-size: 0.75rem;
    color: var(--text-mid);
}

.calc-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: #25d366;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all var(--transition);
}
.calc-submit-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.bolge-section {
    padding: 100px 0;
    background: var(--white);
}
.bolge-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.bolge-header {
    text-align: center;
    margin-bottom: 60px;
}
.bolge-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bolge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
}
.bolge-title-accent {
    color: var(--primary);
}
.bolge-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.bolge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bolge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(0, 45, 98, 0.05);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.bolge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 115, 232, 0.15);
}
.bolge-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1.5px solid rgba(0, 45, 98, 0.05);
    padding-bottom: 16px;
}
.bolge-icon {
    font-size: 1.5rem;
}
.bolge-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--dark-navy);
}
.bolge-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.bolge-list li {
    font-size: 0.92rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.bolge-list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 900;
    font-size: 1.2rem;
}

.faq-section {
    padding: 100px 0;
    background: #fcfcfc;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-navy);
    margin-bottom: 16px;
}
.faq-title-accent {
    color: var(--accent);
    font-weight: 800;
}
.faq-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid rgba(0, 45, 98, 0.05);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all var(--transition);
}
.faq-item:hover {
    border-color: rgba(26, 115, 232, 0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: left;
    gap: 20px;
}
.faq-trigger span {
    line-height: 1.4;
}
.faq-icon-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-icon-arrow::before,
.faq-icon-arrow::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: transform var(--transition);
}

.faq-icon-arrow::before {
    width: 10px;
    height: 2px;
}

.faq-icon-arrow::after {
    width: 2px;
    height: 10px;
}
.faq-trigger[aria-expanded="true"] .faq-icon-arrow {
    transform: rotate(45deg);
    background: rgba(249, 115, 22, 0.1);
}
.faq-trigger[aria-expanded="true"] .faq-icon-arrow::before,
.faq-trigger[aria-expanded="true"] .faq-icon-arrow::after {
    background: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.faq-content-inner {
    padding: 0 30px 24px;
}

@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .calc-info-side {
        max-width: 100%;
        text-align: center;
    }
    .calc-pricing-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nb-title, .surec-title, .calc-title, .bolge-title, .faq-title {
        font-size: 2rem;
    }
    .process-steps, .bolge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .calc-card-body {
        padding: 24px;
    }
    .faq-trigger {
        padding: 20px;
        font-size: 0.95rem;
    }
    .faq-content-inner {
        padding: 0 20px 20px;
    }
}

@keyframes float-lively {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    25%       { transform: translate3d(6px, -12px, 0) rotate(1deg); }
    50%       { transform: translate3d(-8px, 6px, 0) rotate(-1.5deg); }
    75%       { transform: translate3d(10px, 8px, 0) rotate(0.8deg); }
}

@media (min-width: 769px) {
    .flower-1 img {
        animation: float-lively 8s ease-in-out infinite !important;
    }
    .flower-2 img {
        animation: float-lively 9.5s ease-in-out infinite 0.5s !important;
    }
    .flower-3 img {
        animation: float-lively 7.5s ease-in-out infinite 1s !important;
    }
    .flower-4 img {
        animation: float-lively 10.5s ease-in-out infinite 1.5s !important;
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
.reveal-delay-5 { transition-delay: 0.5s !important; }
.reveal-delay-6 { transition-delay: 0.6s !important; }

.in-view .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.in-view .reveal-item-left {
    opacity: 1;
    transform: translateX(0);
}

.reveal-item-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.in-view .reveal-item-right {
    opacity: 1;
    transform: translateX(0);
}

.reveal-item-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.in-view .reveal-item-scale {
    opacity: 1;
    transform: scale(1);
}

.subpage .reveal-item,
.subpage .reveal-item-left,
.subpage .reveal-item-right,
.subpage .reveal-item-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.srv-section { content-visibility: auto; contain-intrinsic-size: auto 650px; }
.hizmetler-section { content-visibility: auto; contain-intrinsic-size: auto 900px; }
.about-section { content-visibility: auto; contain-intrinsic-size: auto 950px; }
#hakkimizda-ek { content-visibility: auto; contain-intrinsic-size: auto 500px; }
.surec-section { content-visibility: auto; contain-intrinsic-size: auto 800px; }
.gallery-section { content-visibility: auto; contain-intrinsic-size: auto 850px; }
.bolge-section { content-visibility: auto; contain-intrinsic-size: auto 1000px; }
.calc-section { content-visibility: auto; contain-intrinsic-size: auto 900px; }
.faq-section { content-visibility: auto; contain-intrinsic-size: auto 700px; }
.campaign-section { content-visibility: auto; contain-intrinsic-size: auto 550px; }
.footer-section { content-visibility: auto; contain-intrinsic-size: auto 450px; }

.js .hero-banner-img-bg img {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.js .hero-banner-img-bg img.loaded {
    opacity: 1;
}

.js .flower img {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.js .flower img.loaded {
    opacity: 1;
}

.js .flower::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(30px);
    opacity: 0.8;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
    animation: flower-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.js .flower.loaded::before {
    opacity: 0;
    animation: none;
}

@keyframes flower-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@media (max-width: 768px) {
    
    .hero-badge,
    .features-bar,
    .srv-eyebrow,
    .hizmetler-features-bar,
    .about-section__badge,
    .about-hygiene-card,
    .about-section__quality-badge,
    .calc-card,
    .bolge-card,
    .bolge-card__inner,
    .bolge-logistics-tracker,
    .delivery-label,
    .faq-item,
    .campaign-banner-wrapper,
    .glass-card-premium {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar {
        box-shadow: 0 4px 28px rgba(12, 30, 61, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    }
    .navbar.scrolled {
        box-shadow: 0 6px 32px rgba(12, 30, 61, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    }
    .hizmetler-features-bar {
        background: rgba(255, 255, 255, 0.96) !important;
    }
    .about-section__badge,
    .about-hygiene-card,
    .about-section__quality-badge {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .calc-card {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .bolge-card {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    .bolge-card__inner {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .bolge-logistics-tracker {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    .delivery-label {
        background: rgba(255, 255, 255, 0.96) !important;
    }
    .campaign-banner-wrapper {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    .glass-card-premium {
        background: rgba(13, 22, 43, 0.95) !important;
    }

    .ambient-glow {
        display: none !important;
    }
}

.about-feature-card, 
.nb-service-card, 
.nb-center-card, 
.bolge-card, 
.process-step {
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 1024px) {
    .about-section { contain-intrinsic-size: auto 1300px; }
    #hakkimizda-ek { contain-intrinsic-size: auto 1000px; }
    .surec-section { contain-intrinsic-size: auto 1200px; }
    .bolge-section { contain-intrinsic-size: auto 1500px; }
}

@media (max-width: 768px) {
    .about-section { contain-intrinsic-size: auto 1850px; }
    #hakkimizda-ek { contain-intrinsic-size: auto 1900px; }
    .surec-section { contain-intrinsic-size: auto 2300px; }
    .bolge-section { contain-intrinsic-size: auto 2000px; }
}

.subpage-hero {
    position: relative;
    width: 100%;
    height: 320px !important; 
    padding: 125px 24px 20px 24px; 
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: 
        linear-gradient(to top, var(--white, #ffffff) 0%, transparent 20%), 
        linear-gradient(to bottom, rgba(12, 30, 61, 0.12) 0%, rgba(12, 30, 61, 0.04) 100%), 
        url('../hero-bg.png') no-repeat center !important;
    background-size: cover !important;
}

.subpage-hero::before {
    display: none !important;
}

.subpage-hero::after {
    display: none !important;
}

.subpage-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.subpage-hero-waves-container {
    display: none !important;
}

.subpage-hero-bg {
    display: none !important;
}

.subpage-waves {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax-waves > use {
    animation: move-subpage-wave 24s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    will-change: transform;
}

.parallax-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 9s;
}

.parallax-waves > use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax-waves > use:nth-child(3) {
    animation-delay: -6s;
    animation-duration: 17s;
}

.parallax-waves > use:nth-child(4) {
    animation-delay: -8s;
    animation-duration: 25s;
}

@keyframes move-subpage-wave {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.subpage-hero-content {
    position: relative;
    z-index: 4; 
    padding: 20px 48px; 
    max-width: 800px;
    margin: 0 auto;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.subpage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    background: rgba(21, 87, 176, 0.06) !important;
    border: 1px solid rgba(21, 87, 176, 0.15) !important;
    color: #1557b0 !important; 
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative;
    overflow: hidden;
}

.subpage-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shineBadge 5.5s infinite ease-in-out;
}

@keyframes shineBadge {
    0% { left: -100%; }
    18% { left: 160%; }
    100% { left: 160%; }
}

.subpage-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #0c1e3d !important; 
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.subpage-title-accent {
    color: #ff5722 !important; 
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    display: inline-block;
}

.subpage-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    color: #475569 !important; 
    opacity: 0.95;
    font-weight: 450;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .subpage-hero {
        height: auto !important;
        min-height: 260px;
        padding: 110px 15px 30px 15px;
        align-items: flex-start;
    }
    .subpage-hero-content {
        padding: 15px 16px;
    }
}

.subpage-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 10;
}

.subpage-section {
    margin-bottom: 100px;
}

.subpage-section:last-child {
    margin-bottom: 0;
}

.subpage-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.story-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
}

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

.subpage-image-frame {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(21, 87, 176, 0.08);
    box-shadow: 0 15px 35px rgba(13, 22, 43, 0.04);
}

.subpage-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.experience-badge-floating {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 24px;
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(21, 87, 176, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 130px;
    z-index: 5;
    animation: floatingGently 6s infinite ease-in-out;
}

@keyframes floatingGently {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.experience-badge-floating .badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.experience-badge-floating .badge-txt {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.bento-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.bento-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-bento-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(21, 87, 176, 0.08);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(21, 87, 176, 0.22);
    box-shadow: 0 20px 45px rgba(21, 87, 176, 0.08);
    background: rgba(255, 255, 255, 0.65);
}

.bento-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(21, 87, 176, 0.06);
    border: 1px solid rgba(21, 87, 176, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.about-bento-card:hover .bento-card-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
}

.bento-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.bento-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.subpage-standards .standards-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.standards-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.standards-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.standard-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.12);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standards-list h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.standards-list p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-mid);
}

.price-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.price-category-card {
    background: #ffffff;
    border: 2px solid rgba(21, 87, 176, 0.18);
    border-radius: 30px;
    padding: 36px 28px 28px 28px;
    box-shadow: 
        0 15px 35px rgba(21, 87, 176, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.price-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 87, 176, 0.35);
    box-shadow: 
        0 25px 50px rgba(21, 87, 176, 0.16),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

.price-category-card--popular {
    border-color: rgba(21, 87, 176, 0.24);
}

.price-category-card--popular:hover {
    border-color: rgba(21, 87, 176, 0.4);
}

.price-badge-popular {
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a73e8 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(21, 87, 176, 0.15);
    z-index: 10;
}

.price-badge-info {
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a73e8 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(21, 87, 176, 0.15);
    z-index: 10;
}

.price-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(21, 87, 176, 0.08);
    position: relative;
    z-index: 2;
}

.price-category-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--card-theme-tint);
    border: 1px solid var(--card-theme-border);
    color: var(--card-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.10rem;
}

.price-category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 750;
    color: var(--dark-navy);
}

.price-table-header {
    display: flex;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: 0.08em;
    padding: 12px 28px;
    margin: 0 -28px 0 -28px;
    background: rgba(21, 87, 176, 0.06);
    border-bottom: 2px solid rgba(21, 87, 176, 0.2);
    position: relative;
    z-index: 2;
}

.price-category-card--popular .price-table-header {
    background: rgba(249, 115, 22, 0.08);
    border-bottom: 2px solid rgba(249, 115, 22, 0.35);
}

.price-item-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    margin: 0 -28px;
    border-radius: 0;
    border-bottom: 1.5px solid rgba(21, 87, 176, 0.15);
    transition: background-color 0.2s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:nth-child(even) {
    background: rgba(21, 87, 176, 0.04);
}

.price-item:hover {
    background: rgba(21, 87, 176, 0.08);
}

.price-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-item-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #1a73e8 100%);
    padding: 5px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(21, 87, 176, 0.15);
}

.price-item-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    font-weight: 550;
    color: var(--dark-navy);
}

.price-item-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #1a73e8 100%);
    border: none;
    padding: 7px 18px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(21, 87, 176, 0.15);
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.fiyatlar-calc-wrapper {
    margin-top: 60px;
    position: relative;
}

.fiyatlar-calc-wrapper .calc-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(21, 87, 176, 0.08);
    box-shadow: 0 15px 40px rgba(13, 22, 43, 0.04);
}

.service-main-image-wrapper {
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(21, 87, 176, 0.08);
    box-shadow: 0 10px 30px rgba(12, 30, 61, 0.02);
    position: relative;
    height: 380px;
    width: 100%;
}
.service-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-main-image-wrapper:hover .service-main-image {
    transform: scale(1.03);
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.service-details-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.service-details-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.service-details-sidebar {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(21, 87, 176, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.03);
    position: sticky;
    top: 100px;
}

.service-spec-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.service-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.service-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(21, 87, 176, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.service-spec-label {
    color: var(--text-mid);
    font-weight: 500;
}

.service-spec-value {
    color: var(--dark-navy);
    font-weight: 700;
    text-align: right;
}

.service-spec-value--price {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
}

.btn-service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.15);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    margin-bottom: 12px;
}

.btn-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(21, 87, 176, 0.25);
}

.btn-service-cta--whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    margin-bottom: 0;
}

.btn-service-cta--whatsapp:hover {
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.25);
}

.service-steps-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 40px;
}

.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-step-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(21, 87, 176, 0.08);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 22, 43, 0.02);
    transition: all 0.3s ease;
}

.service-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 87, 176, 0.15);
    background: rgba(255, 255, 255, 0.55);
}

.service-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 850;
    color: rgba(21, 87, 176, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.service-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.service-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-mid);
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.services-bento-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(21, 87, 176, 0.08);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-bento-card--large {
    grid-column: span 3;
}

.services-bento-card--medium {
    grid-column: span 2;
}

.services-bento-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(21, 87, 176, 0.2);
    box-shadow: 0 20px 45px rgba(21, 87, 176, 0.08);
    background: rgba(255, 255, 255, 0.65);
}

.srv-bento-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.srv-bento-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(21, 87, 176, 0.06);
    border: 1px solid rgba(21, 87, 176, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.services-bento-card:hover .srv-bento-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
}

.srv-bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 750;
    color: var(--dark-navy);
}

.srv-bento-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 24px;
    flex-grow: 1;
}

.srv-bento-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.srv-bento-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.srv-bento-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-srv-bento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(21, 87, 176, 0.05);
    border: 1px solid rgba(21, 87, 176, 0.1);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-srv-bento:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateX(3px);
}

.btn-srv-bento i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-srv-bento:hover i {
    transform: translateX(3px);
}

.subpage-contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: start;
}

.contact-form-side {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(21, 87, 176, 0.08);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-card:hover {
    border-color: rgba(21, 87, 176, 0.18);
    box-shadow: 0 20px 45px rgba(21, 87, 176, 0.06);
    background: rgba(255, 255, 255, 0.55);
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.form-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group-float {
    position: relative;
    margin-bottom: 24px;
}

.form-group-float input,
.form-group-float textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(21, 87, 176, 0.12);
    border-radius: 16px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-navy);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-float textarea {
    resize: none;
}

.form-group-float input:focus,
.form-group-float textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 4px rgba(21, 87, 176, 0.08);
}

.form-group-float label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-mid);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left top;
}

.form-group-float textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group-float input:focus ~ label,
.form-group-float input:not(:placeholder-shown) ~ label,
.form-group-float textarea:focus ~ label,
.form-group-float textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid rgba(21, 87, 176, 0.08);
}

.form-group-select {
    position: relative;
    margin-bottom: 24px;
}

.form-group-select select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(21, 87, 176, 0.12);
    border-radius: 16px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-navy);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group-select select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 4px rgba(21, 87, 176, 0.08);
}

.form-group-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-mid);
    pointer-events: none;
    font-size: 0.85rem;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(21, 87, 176, 0.2);
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 87, 176, 0.35);
}

.btn-form-submit svg {
    transition: transform 0.3s ease;
}

.btn-form-submit:hover svg {
    transform: translate(3px, -3px);
}

.contact-details-side {
    display: flex;
    flex-direction: column;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(21, 87, 176, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(13, 22, 43, 0.02);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: rgba(21, 87, 176, 0.18);
    box-shadow: 0 12px 25px rgba(21, 87, 176, 0.06);
    background: rgba(255, 255, 255, 0.65);
}

.contact-detail-card .card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(21, 87, 176, 0.06);
    border: 1px solid rgba(21, 87, 176, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-card:hover .card-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.card-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 750;
    color: var(--dark-navy);
    margin-bottom: 2px;
}

.card-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.map-card-wrapper {
    border-radius: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(21, 87, 176, 0.08);
    box-shadow: 0 15px 35px rgba(13, 22, 43, 0.04);
    overflow: hidden;
}

.map-card-wrapper iframe {
    border-radius: 20px;
    display: block;
}

@media (max-width: 991px) {
    .subpage-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 30px 24px;
    }

    .subpage-hero {
        height: auto !important;
        min-height: 280px;
        padding: 115px 24px 30px 24px;
        align-items: flex-start;
    }
    
    .subpage-title {
        font-size: 2.3rem;
    }
    
    .subpage-subtitle {
        font-size: 0.95rem;
    }
    
    .subpage-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-side {
        order: -1; 
    }
    
    .experience-badge-floating {
        left: 20px;
        bottom: -20px;
    }
    
    .bento-grid-about {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .subpage-standards .standards-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-bento-card--large,
    .services-bento-card--medium {
        grid-column: span 1;
    }
    
    .services-bento-card {
        padding: 30px 24px;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-details-sidebar {
        position: static;
    }
    
    .service-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.subpage-flower {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    will-change: transform;
    opacity: 0.95;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.subpage-flower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.subpage-flower-left {
    left: -50px;
    top: -20px;
    width: 280px;
    height: 120%;
    transform-origin: top left;
}

.subpage-flower-right {
    right: -50px;
    top: -20px;
    width: 260px;
    height: 120%;
    transform-origin: top right;
}

@media (max-width: 1024px) {
    .subpage-flower-left {
        width: 190px;
        left: -30px;
    }
    .subpage-flower-right {
        width: 170px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .subpage-flower {
        display: none !important; 
    }
}

.calc-select-mobile {
    display: none;
}

.floating-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 9999;
}
.float-btn {
    position: fixed;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    pointer-events: auto;
    text-decoration: none;
    z-index: 9999;
    overflow: visible;
}
.float-btn--whatsapp {
    left: 28px;
    bottom: 28px;
    background: #25d366;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}
.float-btn--phone {
    right: 28px;
    bottom: 28px;
    background: #fa5e16;
    background: linear-gradient(135deg, #ff782e 0%, #fa5e16 100%);
}

.float-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    filter: blur(14px);
    z-index: -2;
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}
.float-btn--whatsapp::after {
    background: #25d366;
}
.float-btn--phone::after {
    background: #fa5e16;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-8px) !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18), inset 0 2px 4px rgba(255, 255, 255, 0.35);
}
.float-btn:hover::after {
    opacity: 0.85;
    transform: scale(1.15);
    filter: blur(18px);
}
.float-btn svg {
    width: 30px;
    height: 30px;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-btn:hover svg {
    transform: scale(1.08);
}

.float-btn__ripple {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    box-sizing: border-box;
}
.float-btn--whatsapp .float-btn__ripple {
    border: 3px solid rgba(37, 211, 102, 0.75);
    background: rgba(37, 211, 102, 0.12);
    animation: float-ripple-whatsapp 2.2s infinite cubic-bezier(0.1, 0.8, 0.25, 1);
}
.float-btn--phone .float-btn__ripple {
    border: 3px solid rgba(250, 94, 22, 0.75);
    background: rgba(250, 94, 22, 0.12);
    animation: float-ripple-phone 2.2s infinite cubic-bezier(0.1, 0.8, 0.25, 1);
}
.float-btn__ripple:nth-child(2) {
    animation-delay: 1.1s;
}

@keyframes float-ripple-whatsapp {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.95;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}
@keyframes float-ripple-phone {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.95;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .float-btn {
        width: 60px !important;
        height: 60px !important;
    }
    .float-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
    .float-btn--whatsapp {
        left: 20px !important;
        bottom: 20px !important;
    }
    .float-btn--phone {
        right: 20px !important;
        bottom: 20px !important;
    }
    .float-btn:hover {
        transform: scale(1.08) translateY(-6px) !important;
    }
    
    .navbar {
        height: 84px !important;
        top: 12px !important;
        width: calc(100% - 24px) !important;
    }
    .navbar.scrolled {
        height: 84px !important;
        top: 12px !important;
    }
    .logo-img {
        height: 52px !important;
    }
    .navbar.scrolled .logo-img {
        height: 52px !important;
    }
    .hamburger {
        padding: 13px !important;
    }
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-menu {
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 29px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 0 25px 3px rgba(12, 30, 61, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    border-radius: 30px;
    padding: 12px;
    width: 220px;
    z-index: 1000;
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background: transparent;
    z-index: -1;
}

.dropdown-item {
    display: block;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    transition: color var(--transition), background-color var(--transition);
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(26, 115, 232, 0.1);
}

