@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --rr-navy: #173b5a;
    --rr-navy-dark: #102b43;
    --rr-cyan: #45b8c2;
    --rr-cyan-dark: #2197a4;
    --rr-red: #2197a4;

    --rr-ink: #172033;
    --rr-text: #5d6a7c;
    --rr-muted: #8c98a8;
    --rr-line: #e7edf4;
    --rr-soft: #f5f9fb;
    --rr-soft-cyan: #edf9fa;
    --rr-white: #ffffff;

    --rr-shadow-sm: 0 8px 24px rgba(16, 43, 67, 0.06);
    --rr-shadow-md: 0 16px 42px rgba(16, 43, 67, 0.10);
    --rr-shadow-lg: 0 24px 70px rgba(16, 43, 67, 0.14);

    --rr-transition: all 0.25s ease;
    --rr-font: 'Plus Jakarta Sans', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--rr-font);
    color: var(--rr-text);
    background: var(--rr-white);
    overflow-x: hidden;
}

body.panel-open,
body.mobile-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rr-container {
    width: min(1500px, calc(100% - 56px));
    margin: 0 auto;
}

/* ================================
   HEADER
   ================================ */

.rr-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--rr-white);
    border-bottom: 1px solid var(--rr-line);
    transition: var(--rr-transition);
}

.rr-header.is-scrolled {
    box-shadow: var(--rr-shadow-md);
}

/* Topbar */
.rr-topbar {
    background: var(--rr-navy-dark);
    color: var(--rr-white);
}

.rr-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.rr-topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.rr-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: var(--rr-transition);
}

a.rr-topbar-item:hover {
    color: var(--rr-white);
}

.rr-topbar-address {
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rr-topbar-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 18px;
    color: var(--rr-cyan);
}

.rr-topbar-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.rr-topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.rr-topbar-right a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--rr-transition);
}

.rr-topbar-right a:hover {
    color: var(--rr-white);
    background: rgba(69, 184, 194, 0.22);
    transform: translateY(-1px);
}

.rr-topbar-right svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Mainbar */
.rr-mainbar {
    background:
            radial-gradient(circle at 85% 0%, rgba(69, 184, 194, 0.08), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.rr-mainbar-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.rr-logo {
    flex: 0 0 218px;
    display: flex;
    align-items: center;
}

.rr-logo img {
    width: 205px;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

/* Navigation */
.rr-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rr-nav-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--rr-ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.15px;
    line-height: 1;
    transition: var(--rr-transition);
    white-space: nowrap;
}

.rr-nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 99px;
    background: var(--rr-cyan);
    opacity: 0;
    transform: scaleX(0.4);
    transition: var(--rr-transition);
}

.rr-nav-link:hover,
.rr-nav-link.active {
    color: var(--rr-navy);
    background: rgba(69, 184, 194, 0.08);
}

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

/* Dropdown */
.rr-dropdown {
    position: relative;
}

.rr-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 20px;
    background: transparent;
    pointer-events: auto;
}

.rr-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--rr-transition);
}

.rr-dropdown:hover .rr-dropdown-toggle svg,
.rr-dropdown.open .rr-dropdown-toggle svg {
    transform: rotate(180deg);
}

.rr-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 720px;
    padding: 18px;
    border: 1px solid var(--rr-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--rr-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px);
    transition: var(--rr-transition);
    pointer-events: none;
}

.rr-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -8px;
    width: 16px;
    height: 16px;
    background: var(--rr-white);
    border-left: 1px solid var(--rr-line);
    border-top: 1px solid var(--rr-line);
    transform: translateX(-50%) rotate(45deg);
}

.rr-dropdown:hover .rr-dropdown-menu,
.rr-dropdown.open .rr-dropdown-menu,
.rr-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.rr-dropdown:hover .rr-dropdown-toggle,
.rr-dropdown.open .rr-dropdown-toggle {
    color: var(--rr-navy);
    background: rgba(69, 184, 194, 0.08);
}

.rr-dropdown:hover .rr-dropdown-toggle::after,
.rr-dropdown.open .rr-dropdown-toggle::after {
    opacity: 1;
    transform: scaleX(1);
}

.rr-dropdown-head {
    padding: 16px 18px;
    border-radius: 18px;
    background:
            radial-gradient(circle at right top, rgba(69, 184, 194, 0.16), transparent 35%),
            linear-gradient(135deg, #f7fbfc, #eef8fa);
    margin-bottom: 12px;
}

.rr-dropdown-head span {
    display: block;
    color: var(--rr-cyan-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.rr-dropdown-head strong {
    display: block;
    margin-top: 5px;
    color: var(--rr-ink);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.rr-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.rr-dropdown-grid a {
    display: flex;
    gap: 13px;
    padding: 14px;
    border-radius: 16px;
    transition: var(--rr-transition);
}

.rr-dropdown-grid a:hover {
    background: var(--rr-soft);
}

.rr-dropdown-grid a > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 12px;
    background: var(--rr-soft-cyan);
    color: var(--rr-cyan-dark);
    font-size: 12px;
    font-weight: 900;
}

.rr-dropdown-grid strong {
    display: block;
    color: var(--rr-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.rr-dropdown-grid small {
    display: block;
    margin-top: 4px;
    color: var(--rr-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

/* Actions */
.rr-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rr-phone {
    min-height: 54px;
    padding-left: 22px;
    border-left: 1px solid var(--rr-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
}

.rr-phone span {
    color: var(--rr-muted);
    font-size: 11px;
    font-weight: 800;
}

.rr-phone strong {
    margin-top: 7px;
    color: var(--rr-navy);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.rr-contact-button,
.rr-mobile-nav-button {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 15px;
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

.rr-contact-button:hover,
.rr-mobile-nav-button:hover {
    transform: translateY(-2px);
    border-color: rgba(69, 184, 194, 0.45);
    box-shadow: var(--rr-shadow-md);
}

.rr-contact-button span,
.rr-mobile-nav-button span {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--rr-navy);
    transition: var(--rr-transition);
}

.rr-mobile-nav-button {
    display: none;
}

/* ================================
   OVERLAY / PANELS
   ================================ */

.rr-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10, 25, 40, 0.42);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--rr-transition);
}

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

/* Desktop Contact Panel */
.rr-contact-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1600;
    width: min(460px, 100%);
    height: 100vh;
    background:
            radial-gradient(circle at top right, rgba(69, 184, 194, 0.18), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    box-shadow: -28px 0 80px rgba(16, 43, 67, 0.20);
    transform: translateX(105%);
    transition: transform 0.36s ease;
}

.rr-contact-panel.active {
    transform: translateX(0);
}

.rr-contact-panel-inner {
    height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.rr-contact-panel-top {
    position: absolute;
    top: 22px;
    right: 22px;
}

.rr-panel-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--rr-navy);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

.rr-panel-close:hover {
    color: var(--rr-white);
    background: var(--rr-navy);
}

.rr-panel-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.rr-panel-brand {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-md);
}

.rr-panel-logo-wrap {
    width: 190px;
    min-height: 82px;
    display: flex;
    align-items: center;
}

.rr-panel-brand > span {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--rr-soft-cyan);
    color: var(--rr-cyan-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rr-panel-brand h2 {
    margin-top: 16px;
    color: var(--rr-ink);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.rr-panel-brand p {
    margin-top: 12px;
    color: var(--rr-text);
    font-size: 14px;
    line-height: 1.75;
}

.rr-panel-info {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.rr-panel-info a,
.rr-panel-info div {
    display: block;
    padding: 15px 16px;
    border-radius: 18px;
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
}

.rr-panel-info small {
    display: block;
    color: var(--rr-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.rr-panel-info strong {
    display: block;
    margin-top: 5px;
    color: var(--rr-navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.rr-panel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.rr-panel-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.rr-panel-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--rr-navy);
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

.rr-panel-social a:hover {
    color: var(--rr-white);
    background: var(--rr-cyan-dark);
    transform: translateY(-2px);
}

.rr-panel-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rr-panel-call {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(23, 59, 90, 0.16);
}

/* Mobile Drawer */
.rr-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1600;
    width: min(380px, 92%);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
            radial-gradient(circle at top left, rgba(69, 184, 194, 0.14), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    box-shadow: 26px 0 80px rgba(16, 43, 67, 0.20);
    transform: translateX(-105%);
    transition: transform 0.36s ease;
}

.rr-mobile-drawer.active {
    transform: translateX(0);
}

.rr-mobile-drawer-head {
    flex: 0 0 auto;
    min-height: 88px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--rr-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rr-mobile-logo {
    width: 152px;
    display: flex;
    align-items: center;
}

.rr-mobile-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--rr-navy);
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
}

.rr-mobile-close svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.rr-mobile-menu {
    flex: 1 1 auto;
    min-height: 0;
    display: block;
    padding: 16px;
    padding-bottom: 22px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.rr-mobile-menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.rr-mobile-menu > a,
.rr-mobile-accordion-button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0 16px;
    border-radius: 15px;
    color: var(--rr-ink);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    font-size: 14px;
    font-weight: 900;
    text-align: left;
    transition: var(--rr-transition);
}

.rr-mobile-menu > a:hover,
.rr-mobile-menu > a.active,
.rr-mobile-accordion.open .rr-mobile-accordion-button {
    color: var(--rr-navy);
    background: var(--rr-soft-cyan);
    border-color: rgba(69, 184, 194, 0.24);
}

.rr-mobile-accordion-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
    transition: var(--rr-transition);
}

.rr-mobile-accordion.open .rr-mobile-accordion-button svg {
    transform: rotate(180deg);
}

.rr-mobile-submenu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    margin: 0 0 8px;
    border-left: 2px solid rgba(69, 184, 194, 0.28);
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.rr-mobile-accordion.open .rr-mobile-submenu {
    max-height: 520px;
    padding: 8px 0 8px 12px;
}

.rr-mobile-submenu a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 13px;
    color: var(--rr-text);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--rr-line);
    font-size: 13px;
    font-weight: 800;
}

.rr-mobile-submenu a:hover {
    color: var(--rr-cyan-dark);
    background: var(--rr-white);
}

.rr-mobile-drawer-footer {
    display: none;
}

/* ================================
   AGENCY SLIDER
   ================================ */

.rr-agency-slider {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: #f6f9fc;
}

.rr-agency-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center;
    transition: opacity 0.75s ease, visibility 0.75s ease, transform 1.1s ease;
}

.rr-agency-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.rr-agency-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(16, 43, 67, 0.88) 0%, rgba(16, 43, 67, 0.72) 34%, rgba(16, 43, 67, 0.26) 68%, rgba(16, 43, 67, 0.08) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.06));
}

.rr-agency-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.rr-agency-content {
    max-width: 620px;
    color: var(--rr-white);
}

.rr-agency-content span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 13px;
    border-radius: 999px;
    color: var(--rr-white);
    background: rgba(69, 184, 194, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rr-agency-content h1 {
    margin-top: 20px;
    color: var(--rr-white);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.rr-agency-content p {
    max-width: 540px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 500;
}

.rr-agency-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 24px;
}

.rr-agency-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    transition: var(--rr-transition);
}

.rr-agency-btn.primary {
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-cyan), var(--rr-cyan-dark));
    box-shadow: 0 16px 34px rgba(69, 184, 194, 0.28);
}

.rr-agency-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(69, 184, 194, 0.36);
}

.rr-agency-btn.light {
    color: var(--rr-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(12px);
}

.rr-agency-btn.light:hover {
    color: var(--rr-navy);
    background: var(--rr-white);
    transform: translateY(-3px);
}

.rr-agency-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 44px rgba(16, 43, 67, 0.18);
    backdrop-filter: blur(16px);
}

.rr-agency-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rr-navy);
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    transition: var(--rr-transition);
}

.rr-agency-arrow:hover {
    color: var(--rr-white);
    background: var(--rr-navy);
}

.rr-agency-arrow svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.rr-agency-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.rr-agency-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #bdcbd6;
    transition: var(--rr-transition);
}

.rr-agency-dots button.active {
    width: 30px;
    background: var(--rr-cyan-dark);
}

/* ================================
   ABOUT SECTION
   ================================ */

.rr-about-section {
    position: relative;
    padding: 92px 0 96px;
    background:
            radial-gradient(circle at 88% 18%, rgba(69, 184, 194, 0.10), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    overflow: hidden;
}

.rr-about-section::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(23, 59, 90, 0.06);
    pointer-events: none;
}

.rr-about-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 70px;
}

.rr-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(69, 184, 194, 0.10);
    color: var(--rr-cyan-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rr-section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rr-cyan);
    box-shadow: 0 0 0 5px rgba(69, 184, 194, 0.12);
}

.rr-about-content h2 {
    max-width: 780px;
    margin-top: 18px;
    color: var(--rr-ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 900;
}

.rr-about-content h2 strong {
    color: var(--rr-cyan-dark);
    font-weight: 900;
}

.rr-about-content p {
    max-width: 720px;
    margin-top: 22px;
    color: var(--rr-text);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.rr-about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.rr-about-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 900;
    transition: var(--rr-transition);
}

.rr-about-btn.primary {
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    box-shadow: 0 15px 34px rgba(23, 59, 90, 0.16);
}

.rr-about-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(33, 151, 164, 0.23);
}

.rr-about-btn.secondary {
    color: var(--rr-navy);
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
}

.rr-about-btn.secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 194, 0.45);
    box-shadow: var(--rr-shadow-md);
}

.rr-about-image-card {
    position: relative;
    min-height: 500px;
    border-radius: 34px;
    overflow: hidden;
    background: var(--rr-soft);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-lg);
}

.rr-about-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(180deg, rgba(16, 43, 67, 0.05), rgba(16, 43, 67, 0.46)),
            radial-gradient(circle at 80% 20%, rgba(69, 184, 194, 0.25), transparent 32%);
}

.rr-about-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.02);
}

.rr-about-image-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 44px rgba(16, 43, 67, 0.18);
    backdrop-filter: blur(14px);
}

.rr-about-image-badge span {
    display: block;
    color: var(--rr-cyan-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rr-about-image-badge strong {
    display: block;
    margin-top: 6px;
    color: var(--rr-navy);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.rr-about-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
}

.rr-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

.rr-about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--rr-shadow-md);
    border-color: rgba(69, 184, 194, 0.30);
}

.rr-about-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    border-radius: 16px;
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    box-shadow: 0 12px 28px rgba(23, 59, 90, 0.15);
}

.rr-about-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.rr-about-feature h3 {
    color: var(--rr-ink);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.rr-about-feature p {
    margin-top: 7px;
    color: var(--rr-text);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

/* ================================
   SERVICES SECTION
   ================================ */

.rr-services-section {
    position: relative;
    padding: 88px 0 96px;
    background:
            radial-gradient(circle at 10% 18%, rgba(69, 184, 194, 0.10), transparent 28%),
            linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.rr-services-section::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 90px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(23, 59, 90, 0.05);
    pointer-events: none;
}

.rr-services-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.rr-services-intro {
    max-width: 720px;
}

.rr-services-intro h2 {
    margin-top: 14px;
    color: var(--rr-ink);
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    font-weight: 900;
}

.rr-services-intro p {
    max-width: 620px;
    margin-top: 12px;
    color: var(--rr-text);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.rr-services-top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.rr-services-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rr-services-arrow {
    position: static;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rr-navy);
    background: var(--rr-white);
    border: 1px solid #e5edf4;
    box-shadow: 0 12px 28px rgba(16, 43, 67, 0.08);
    transform: none;
    transition: var(--rr-transition);
}

.rr-services-arrow:hover {
    color: var(--rr-white);
    background: var(--rr-navy);
    border-color: var(--rr-navy);
    transform: translateY(-2px);
}

.rr-services-arrow svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.rr-services-all-btn {
    height: 52px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 26px;
    border-radius: 999px;
    color: var(--rr-red);
    background: var(--rr-white);
    border: 1px solid #e5edf4;
    box-shadow: 0 12px 28px rgba(16, 43, 67, 0.08);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: var(--rr-transition);
}

.rr-services-all-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.rr-services-all-btn:hover {
    color: var(--rr-white);
    background: var(--rr-red);
    border-color: var(--rr-red);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(225, 37, 27, 0.22);
}

.rr-services-all-btn:hover svg {
    transform: translateX(4px);
}

.rr-services-carousel-wrap {
    position: relative;
    z-index: 2;
}

.rr-services-carousel {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 2px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rr-services-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.rr-service-card {
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4);
    min-height: 390px;
    scroll-snap-align: start;
    border-radius: 28px;
    overflow: hidden;
    background: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

.rr-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rr-shadow-lg);
}

.rr-service-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.rr-service-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(180deg, rgba(16, 43, 67, 0.06) 0%, rgba(16, 43, 67, 0.22) 34%, rgba(16, 43, 67, 0.88) 100%),
            radial-gradient(circle at top right, rgba(69, 184, 194, 0.22), transparent 34%);
}

.rr-service-number {
    display: none;
}

.rr-service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.rr-service-content h3 {
    margin: 0;
    color: var(--rr-white);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.rr-service-content p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.rr-service-content a {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--rr-white);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: var(--rr-transition);
}

.rr-service-content a::after {
    content: "→";
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.rr-service-content a:hover {
    color: #c7f4f7;
}

.rr-service-content a:hover::after {
    transform: translateX(4px);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1280px) {
    .rr-container {
        width: min(1200px, calc(100% - 40px));
    }

    .rr-logo {
        flex-basis: 180px;
    }

    .rr-logo img {
        width: 172px;
    }

    .rr-nav-link {
        padding: 0 10px;
        font-size: 14px;
    }

    .rr-phone {
        display: none;
    }

    .rr-topbar-address {
        max-width: 330px;
    }

    .rr-service-card {
        flex-basis: calc((100% - 40px) / 3);
    }
}

@media (max-width: 1100px) {
    .rr-about-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .rr-about-image-card,
    .rr-about-image-card img {
        height: 420px;
        min-height: 420px;
    }

    .rr-about-features {
        grid-template-columns: 1fr;
    }

    .rr-services-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .rr-services-top-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 1040px) {
    .rr-mainbar-inner {
        gap: 22px;
    }

    .rr-dropdown-menu {
        left: auto;
        right: -140px;
        transform: translateY(12px);
    }

    .rr-dropdown:hover .rr-dropdown-menu,
    .rr-dropdown.open .rr-dropdown-menu {
        transform: translateY(0);
    }

    .rr-dropdown-menu::before {
        left: auto;
        right: 170px;
        transform: rotate(45deg);
    }
}

@media (max-width: 920px) {
    .rr-container {
        width: min(100% - 24px, 1200px);
    }

    .rr-topbar {
        display: block;
        background: var(--rr-navy-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .rr-topbar-inner {
        width: min(100% - 20px, 1200px);
        min-height: 38px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rr-topbar-left {
        width: 100%;
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: center;
        gap: 0;
        overflow: hidden;
    }

    .rr-topbar-item {
        width: auto;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0 9px;
        border-radius: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.88);
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
    }

    .rr-topbar-item:first-child {
        position: relative;
    }

    .rr-topbar-item:first-child::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 1px;
        height: 13px;
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-50%);
    }

    .rr-topbar-address {
        display: none;
    }

    .rr-topbar-icon {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }

    .rr-topbar-icon svg {
        width: 13px;
        height: 13px;
    }

    .rr-topbar-right {
        display: none;
    }

    .rr-mainbar-inner {
        min-height: 74px;
        justify-content: space-between;
        gap: 16px;
    }

    .rr-logo {
        flex: 0 0 150px;
    }

    .rr-logo img {
        width: 146px;
        height: 52px;
    }

    .rr-nav,
    .rr-contact-button,
    .rr-phone {
        display: none;
    }

    .rr-mobile-nav-button {
        display: inline-flex;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--rr-white);
        border: 1px solid var(--rr-line);
        box-shadow: var(--rr-shadow-sm);
    }

    .rr-agency-slider {
        height: 500px;
    }

    .rr-agency-overlay {
        background:
                linear-gradient(90deg, rgba(16, 43, 67, 0.88) 0%, rgba(16, 43, 67, 0.70) 55%, rgba(16, 43, 67, 0.34) 100%);
    }

    .rr-agency-content {
        max-width: 100%;
        padding-bottom: 46px;
    }

    .rr-agency-content h1 {
        font-size: clamp(30px, 8vw, 44px);
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .rr-agency-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .rr-agency-slider-controls {
        bottom: 20px;
    }

    .rr-about-section {
        padding: 68px 0 72px;
    }

    .rr-about-wrapper {
        gap: 34px;
    }

    .rr-about-content h2 {
        font-size: clamp(30px, 8vw, 44px);
        letter-spacing: -1.4px;
    }

    .rr-about-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .rr-about-image-card,
    .rr-about-image-card img {
        height: 360px;
        min-height: 360px;
        border-radius: 28px;
    }

    .rr-about-image-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 17px 18px;
        border-radius: 18px;
    }

    .rr-about-image-badge strong {
        font-size: 17px;
    }

    .rr-about-feature {
        padding: 18px;
        border-radius: 20px;
    }

    .rr-services-section {
        padding: 66px 0 74px;
    }

    .rr-services-intro h2 {
        font-size: clamp(28px, 7.4vw, 40px);
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .rr-services-intro p {
        font-size: 14px;
        line-height: 1.7;
    }

    .rr-service-card {
        flex-basis: calc((100% - 20px) / 2);
        min-height: 360px;
    }

    .rr-service-content {
        padding: 22px;
    }

    .rr-service-content h3 {
        font-size: 21px;
    }

    .rr-service-content p {
        font-size: 13.5px;
    }
}

@media (max-width: 620px) {
    .rr-services-section {
        padding: 54px 0 62px;
    }

    .rr-services-topbar {
        gap: 18px;
        margin-bottom: 22px;
    }

    .rr-services-intro h2 {
        font-size: clamp(25px, 8vw, 34px);
        line-height: 1.12;
    }

    .rr-services-intro p {
        font-size: 13.5px;
    }

    .rr-services-top-actions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .rr-services-nav {
        gap: 8px;
    }

    .rr-services-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .rr-services-arrow svg {
        width: 20px;
        height: 20px;
    }

    .rr-services-all-btn {
        width: auto;
        height: 44px;
        min-height: 44px;
        padding: 0 18px;
        font-size: 13px;
    }

    .rr-services-all-btn svg {
        width: 18px;
        height: 18px;
    }

    .rr-services-carousel {
        gap: 14px;
        padding: 8px 2px 18px;
    }

    .rr-service-card {
        flex-basis: 86%;
        min-height: 340px;
        border-radius: 24px;
    }

    .rr-service-content {
        padding: 20px;
    }

    .rr-service-content h3 {
        font-size: 20px;
    }

    .rr-service-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .rr-service-content a {
        margin-top: 12px;
        font-size: 12.5px;
    }
}

@media (max-width: 560px) {
    .rr-container {
        width: min(100% - 22px, 1200px);
    }

    .rr-topbar-inner {
        width: min(100% - 12px, 1200px);
    }

    .rr-topbar-item {
        padding: 0 6px;
        font-size: 10.5px;
    }

    .rr-logo {
        flex: 0 0 136px;
    }

    .rr-logo img {
        width: 132px;
        height: 48px;
    }

    .rr-mainbar-inner {
        min-height: 70px;
    }

    .rr-mobile-nav-button {
        width: 44px;
        height: 44px;
    }

    .rr-mobile-drawer {
        width: min(360px, 94%);
    }

    .rr-mobile-menu {
        padding: 14px;
    }

    .rr-mobile-menu > a,
    .rr-mobile-accordion-button {
        min-height: 50px;
        font-size: 13.5px;
    }

    .rr-agency-slider {
        height: 455px;
    }

    .rr-agency-slide {
        background-position: center;
    }

    .rr-agency-overlay {
        background:
                linear-gradient(180deg, rgba(16, 43, 67, 0.72) 0%, rgba(16, 43, 67, 0.88) 100%);
    }

    .rr-agency-slide-inner {
        align-items: flex-end;
        padding-bottom: 78px;
    }

    .rr-agency-content span {
        min-height: 28px;
        padding: 5px 11px;
        font-size: 10.5px;
    }

    .rr-agency-content h1 {
        margin-top: 12px;
        font-size: clamp(26px, 8.8vw, 35px);
        line-height: 1.1;
    }

    .rr-agency-content p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.55;
    }

    .rr-agency-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 16px;
        gap: 9px;
    }

    .rr-agency-btn {
        width: 100%;
        min-height: 42px;
        font-size: 13px;
    }

    .rr-agency-slider-controls {
        bottom: 16px;
    }

    .rr-agency-arrow {
        width: 36px;
        height: 36px;
    }

    .rr-agency-dots button.active {
        width: 24px;
    }

    .rr-about-section {
        padding: 54px 0 58px;
    }

    .rr-about-content h2 {
        margin-top: 15px;
        font-size: clamp(27px, 8.4vw, 36px);
        line-height: 1.12;
    }

    .rr-about-content p {
        margin-top: 16px;
        font-size: 14px;
    }

    .rr-about-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 24px;
    }

    .rr-about-btn {
        width: 100%;
        min-height: 46px;
    }

    .rr-about-image-card,
    .rr-about-image-card img {
        height: 300px;
        min-height: 300px;
    }

    .rr-about-features {
        margin-top: 30px;
    }

    .rr-about-feature {
        gap: 13px;
    }

    .rr-about-feature-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .rr-about-feature h3 {
        font-size: 15px;
    }

    .rr-about-feature p {
        font-size: 12.5px;
    }
}

@media (max-width: 360px) {
    .rr-topbar-left {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rr-topbar-item {
        min-height: 32px;
    }

    .rr-topbar-item:first-child::after {
        display: none;
    }
}
/* ================================
   SERVICES BUTTON SITE COLOR FIX
   Kırmızı kaldırıldı, site renklerine uyarlandı
   ================================ */

.rr-services-all-btn {
    color: var(--rr-navy);
    background: var(--rr-white);
    border-color: rgba(69, 184, 194, 0.28);
}

.rr-services-all-btn svg {
    fill: currentColor;
}

.rr-services-all-btn:hover {
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(33, 151, 164, 0.22);
}

/* ================================
   STATS / COUNTER SECTION
   ================================ */

.rr-stats-section {
    position: relative;
    padding: 74px 0 82px;
    background:
            radial-gradient(circle at 12% 18%, rgba(69, 184, 194, 0.09), transparent 26%),
            radial-gradient(circle at 88% 76%, rgba(23, 59, 90, 0.06), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    overflow: hidden;
}

.rr-stats-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1280px, calc(100% - 56px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69, 184, 194, 0.30), transparent);
    transform: translateX(-50%);
}

.rr-stats-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.rr-stat-item {
    position: relative;
    min-height: 190px;
    padding: 34px 22px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    background:
            radial-gradient(circle at 80% 10%, rgba(69, 184, 194, 0.12), transparent 36%),
            rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(231, 237, 244, 0.96);
    box-shadow: 0 18px 48px rgba(16, 43, 67, 0.07);
    overflow: hidden;
    transition: var(--rr-transition);
}

.rr-stat-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rr-navy), var(--rr-cyan-dark));
    opacity: 0.26;
    transform: translateX(-50%);
}

.rr-stat-item::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: rgba(69, 184, 194, 0.09);
    pointer-events: none;
}

.rr-stat-item:hover {
    transform: translateY(-7px);
    border-color: rgba(69, 184, 194, 0.30);
    box-shadow: 0 26px 68px rgba(16, 43, 67, 0.12);
}

.rr-stat-item strong {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--rr-navy-dark);
    font-size: clamp(54px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 500;
}

.rr-stat-item > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 22px;
    color: var(--rr-cyan-dark);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.15px;
}

.rr-count {
    display: inline-block;
    min-width: 1ch;
}

/* Responsive */
@media (max-width: 1100px) {
    .rr-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .rr-stat-item {
        min-height: 178px;
    }
}

@media (max-width: 620px) {
    .rr-stats-section {
        padding: 54px 0 60px;
    }

    .rr-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rr-stat-item {
        min-height: 152px;
        padding: 30px 18px 26px;
        border-radius: 24px;
    }

    .rr-stat-item strong {
        font-size: clamp(48px, 16vw, 68px);
        letter-spacing: -2px;
    }

    .rr-stat-item > span {
        margin-top: 16px;
        font-size: 14px;
    }
}

/* ================================
   GALLERY / REFERENCES CAROUSEL
   ================================ */

.rr-gallery-section {
    position: relative;
    padding: 88px 0 104px;
    background:
            radial-gradient(circle at 88% 8%, rgba(69, 184, 194, 0.12), transparent 31%),
            radial-gradient(circle at 8% 86%, rgba(23, 59, 90, 0.055), transparent 32%),
            linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.rr-gallery-section::before {
    content: "";
    position: absolute;
    right: -190px;
    top: -90px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(69, 184, 194, 0.09);
    pointer-events: none;
}

.rr-gallery-section::after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: 40px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(23, 59, 90, 0.045);
    pointer-events: none;
}

.rr-gallery-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.rr-gallery-title {
    max-width: 760px;
}

.rr-gallery-title h2 {
    margin-top: 16px;
    color: var(--rr-ink);
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.rr-gallery-title p {
    max-width: 690px;
    margin-top: 14px;
    color: var(--rr-text);
    font-size: 15px;
    line-height: 1.76;
    font-weight: 600;
}

.rr-gallery-all-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 0 auto;
    padding: 0 24px;
    border-radius: 999px;
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    box-shadow: 0 16px 36px rgba(33, 151, 164, 0.20);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: var(--rr-transition);
}

.rr-gallery-all-btn svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.rr-gallery-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(33, 151, 164, 0.28);
}

.rr-gallery-all-btn:hover svg {
    transform: translateX(4px);
}

.rr-gallery-tabs-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    padding: 9px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(231, 237, 244, 0.95);
    box-shadow: 0 18px 46px rgba(16, 43, 67, 0.07);
    backdrop-filter: blur(14px);
}

.rr-gallery-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rr-gallery-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.rr-gallery-tabs button {
    flex: 1 0 150px;
    min-width: max-content;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 19px;
    color: var(--rr-navy);
    background: transparent;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: var(--rr-transition);
}

.rr-gallery-tabs button:hover {
    color: var(--rr-cyan-dark);
    background: rgba(69, 184, 194, 0.08);
}

.rr-gallery-tabs button.active {
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    box-shadow: 0 15px 32px rgba(33, 151, 164, 0.22);
}

.rr-gallery-carousel-area {
    position: relative;
    z-index: 2;
}

.rr-gallery-carousel {
    display: flex;
    align-items: stretch;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 2px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rr-gallery-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.rr-gallery-card {
    position: relative;
    flex: 0 0 calc((100% - 66px) / 4);
    scroll-snap-align: start;
    border-radius: 30px;
    background: var(--rr-white);
    border: 1px solid rgba(231, 237, 244, 0.96);
    box-shadow: 0 16px 42px rgba(16, 43, 67, 0.07);
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rr-gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 184, 194, 0.32);
    box-shadow: 0 28px 76px rgba(16, 43, 67, 0.13);
}

.rr-gallery-card.is-hidden {
    display: none;
}

.rr-gallery-image {
    position: relative;
    width: 100%;
    height: 285px;
    display: block;
    overflow: hidden;
    background: var(--rr-soft);
}

.rr-gallery-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(180deg, rgba(16, 43, 67, 0.04) 0%, rgba(16, 43, 67, 0.78) 100%),
            radial-gradient(circle at 78% 16%, rgba(69, 184, 194, 0.30), transparent 36%);
    opacity: 0;
    transition: var(--rr-transition);
}

.rr-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.62s ease;
}

.rr-gallery-image span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--rr-navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 42px rgba(16, 43, 67, 0.20);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.94);
    transition: var(--rr-transition);
}

.rr-gallery-card:hover .rr-gallery-image::before {
    opacity: 1;
}

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

.rr-gallery-card:hover .rr-gallery-image span {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rr-gallery-content {
    padding: 18px 20px 21px;
}

.rr-gallery-content small {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--rr-cyan-dark);
    background: var(--rr-soft-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rr-gallery-content h3 {
    margin-top: 12px;
    color: var(--rr-ink);
    font-size: 18px;
    line-height: 1.24;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.rr-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rr-navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(231, 237, 244, 0.96);
    box-shadow: 0 18px 44px rgba(16, 43, 67, 0.14);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: var(--rr-transition);
}

.rr-gallery-arrow:hover {
    color: var(--rr-white);
    background: var(--rr-navy);
    border-color: var(--rr-navy);
}

.rr-gallery-arrow svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.rr-gallery-prev {
    left: -24px;
}

.rr-gallery-next {
    right: -24px;
}

/* Gallery Lightbox */
.rr-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--rr-transition);
}

.rr-gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rr-gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 78% 14%, rgba(69, 184, 194, 0.18), transparent 28%),
            rgba(8, 20, 32, 0.78);
    backdrop-filter: blur(8px);
}

.rr-gallery-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(1060px, 100%);
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 32px;
    background: var(--rr-white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34);
    transform: translateY(18px) scale(0.97);
    transition: var(--rr-transition);
}

.rr-gallery-lightbox.active .rr-gallery-lightbox-content {
    transform: translateY(0) scale(1);
}

.rr-gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--rr-navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 14px 34px rgba(16, 43, 67, 0.16);
    transition: var(--rr-transition);
}

.rr-gallery-lightbox-close:hover {
    color: var(--rr-white);
    background: var(--rr-navy);
}

.rr-gallery-lightbox-close svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.rr-gallery-lightbox-image {
    width: 100%;
    min-height: 570px;
    background: var(--rr-soft);
}

.rr-gallery-lightbox-image img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 180px);
    object-fit: cover;
}

.rr-gallery-lightbox-info {
    padding: 23px 28px 25px;
    background:
            radial-gradient(circle at right top, rgba(69, 184, 194, 0.11), transparent 32%),
            var(--rr-white);
}

.rr-gallery-lightbox-info small {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--rr-cyan-dark);
    background: var(--rr-soft-cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rr-gallery-lightbox-info h3 {
    margin-top: 10px;
    color: var(--rr-ink);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.7px;
}

/* Responsive */
@media (max-width: 1280px) {
    .rr-gallery-card {
        flex-basis: calc((100% - 44px) / 3);
    }

    .rr-gallery-image {
        height: 265px;
    }
}

@media (max-width: 920px) {
    .rr-gallery-section {
        padding: 68px 0 78px;
    }

    .rr-gallery-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .rr-gallery-title h2 {
        font-size: clamp(29px, 7vw, 42px);
        letter-spacing: -1.3px;
    }

    .rr-gallery-title p {
        font-size: 14px;
    }

    .rr-gallery-all-btn {
        min-height: 48px;
        padding: 0 20px;
        font-size: 13px;
    }

    .rr-gallery-tabs-wrap {
        margin-bottom: 22px;
        border-radius: 24px;
    }

    .rr-gallery-tabs button {
        flex: 1 0 145px;
        min-height: 48px;
        padding: 0 18px;
        border-radius: 17px;
        font-size: 13px;
    }

    .rr-gallery-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .rr-gallery-image {
        height: 245px;
    }

    .rr-gallery-prev {
        left: 8px;
    }

    .rr-gallery-next {
        right: 8px;
    }

    .rr-gallery-lightbox-content {
        border-radius: 24px;
    }

    .rr-gallery-lightbox-image {
        min-height: 420px;
    }
}

@media (max-width: 620px) {
    .rr-gallery-section {
        padding: 54px 0 64px;
    }

    .rr-gallery-head {
        margin-bottom: 22px;
    }

    .rr-gallery-title h2 {
        font-size: clamp(27px, 8.4vw, 36px);
        line-height: 1.12;
    }

    .rr-gallery-title p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .rr-gallery-tabs-wrap {
        padding: 8px;
        margin-bottom: 18px;
        border-radius: 22px;
    }

    .rr-gallery-tabs {
        gap: 7px;
    }

    .rr-gallery-tabs button {
        flex: 0 0 auto;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 15px;
        font-size: 12.5px;
    }

    .rr-gallery-carousel {
        gap: 14px;
        padding-bottom: 18px;
    }

    .rr-gallery-card {
        flex-basis: 84%;
        border-radius: 24px;
    }

    .rr-gallery-image {
        height: 245px;
    }

    .rr-gallery-content {
        padding: 16px 17px 18px;
    }

    .rr-gallery-content h3 {
        font-size: 17px;
    }

    .rr-gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .rr-gallery-arrow svg {
        width: 21px;
        height: 21px;
    }

    .rr-gallery-prev {
        left: 6px;
    }

    .rr-gallery-next {
        right: 6px;
    }

    .rr-gallery-lightbox {
        padding: 14px;
    }

    .rr-gallery-lightbox-content {
        max-height: calc(100vh - 28px);
        border-radius: 22px;
    }

    .rr-gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .rr-gallery-lightbox-image {
        min-height: 330px;
    }

    .rr-gallery-lightbox-image img {
        max-height: calc(100vh - 170px);
    }

    .rr-gallery-lightbox-info {
        padding: 18px 18px 20px;
    }

    .rr-gallery-lightbox-info h3 {
        font-size: 20px;
    }
}

/* ================================
   CONTACT SECTION
   ================================ */

.rr-contact-section {
    position: relative;
    padding: 92px 0 96px;
    background:
            radial-gradient(circle at 10% 16%, rgba(69, 184, 194, 0.11), transparent 28%),
            radial-gradient(circle at 92% 76%, rgba(23, 59, 90, 0.06), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    overflow: hidden;
}

.rr-contact-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 32px;
    padding: 34px;
    border-radius: 34px;
    color: var(--rr-white);
    background:
            radial-gradient(circle at 86% 18%, rgba(69, 184, 194, 0.36), transparent 34%),
            linear-gradient(135deg, var(--rr-navy-dark), var(--rr-navy));
    box-shadow: 0 28px 76px rgba(16, 43, 67, 0.18);
    overflow: hidden;
}

.rr-contact-cta::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(69, 184, 194, 0.18);
    pointer-events: none;
}

.rr-contact-cta > div {
    position: relative;
    z-index: 2;
}

.rr-contact-cta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    color: #d8fbfd;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.rr-contact-cta h2 {
    max-width: 780px;
    margin-top: 14px;
    color: var(--rr-white);
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    font-weight: 900;
}

.rr-contact-cta p {
    max-width: 680px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.rr-contact-cta-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rr-contact-cta-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: var(--rr-transition);
}

.rr-contact-cta-btn.primary {
    color: var(--rr-navy);
    background: var(--rr-white);
}

.rr-contact-cta-btn.secondary {
    color: var(--rr-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.rr-contact-cta-btn:hover {
    transform: translateY(-3px);
}

.rr-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
}

.rr-contact-info-card,
.rr-contact-map-card {
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--rr-line);
    box-shadow: 0 20px 58px rgba(16, 43, 67, 0.08);
    overflow: hidden;
}

.rr-contact-info-card {
    padding: 34px;
}

.rr-contact-info-card h3 {
    margin-top: 16px;
    color: var(--rr-ink);
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 900;
}

.rr-contact-info-card > p {
    margin-top: 12px;
    color: var(--rr-text);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.rr-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.rr-contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border-radius: 22px;
    background: var(--rr-white);
    border: 1px solid var(--rr-line);
    box-shadow: var(--rr-shadow-sm);
    transition: var(--rr-transition);
}

a.rr-contact-list-item:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 184, 194, 0.35);
    box-shadow: var(--rr-shadow-md);
}

.rr-contact-list-item > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 16px;
    color: var(--rr-white);
    background: linear-gradient(135deg, var(--rr-navy), var(--rr-cyan-dark));
    box-shadow: 0 12px 28px rgba(33, 151, 164, 0.18);
}

.rr-contact-list-item svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.rr-contact-list-item small {
    display: block;
    color: var(--rr-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.rr-contact-list-item strong {
    display: block;
    margin-top: 5px;
    color: var(--rr-navy);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
}

.rr-contact-map-card {
    min-height: 520px;
}

.rr-contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    filter: saturate(0.95) contrast(1.02);
}

/* ================================
   FOOTER
   ================================ */

.rr-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    background:
            radial-gradient(circle at 86% 0%, rgba(69, 184, 194, 0.18), transparent 32%),
            linear-gradient(180deg, var(--rr-navy-dark) 0%, #071826 100%);
    overflow: hidden;
}

.rr-footer::before {
    content: "";
    position: absolute;
    left: -160px;
    top: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(69, 184, 194, 0.10);
    pointer-events: none;
}

.rr-footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 0.85fr 1fr;
    gap: 38px;
    padding: 72px 0 54px;
}

.rr-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 205px;
    min-height: 72px;
    padding: 8px 14px;
    border-radius: 20px;
    background: var(--rr-white);
}

.rr-footer-logo img {
    width: 176px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
}

.rr-footer-brand p {
    max-width: 420px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

.rr-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.rr-footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--rr-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: var(--rr-transition);
}

.rr-footer-social a:hover {
    background: var(--rr-cyan-dark);
    transform: translateY(-3px);
}

.rr-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rr-footer-column h3,
.rr-footer-contact h3 {
    margin-bottom: 18px;
    color: var(--rr-white);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.rr-footer-column a,
.rr-footer-contact a,
.rr-footer-contact span {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    transition: var(--rr-transition);
}

.rr-footer-column a:hover,
.rr-footer-contact a:hover {
    color: var(--rr-white);
    transform: translateX(4px);
}

.rr-footer-contact span {
    max-width: 260px;
}

.rr-footer-whatsapp {
    margin-top: 18px;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 14px;
    color: var(--rr-white) !important;
    background: linear-gradient(135deg, var(--rr-cyan), var(--rr-cyan-dark));
    box-shadow: 0 14px 30px rgba(33, 151, 164, 0.22);
}

.rr-footer-whatsapp:hover {
    transform: translateY(-3px) !important;
}

.rr-footer-bottom {
    position: relative;
    z-index: 2;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.rr-footer-bottom p,
.rr-footer-bottom span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.rr-floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--rr-white);
    background: #25d366;
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
    transition: var(--rr-transition);
}

.rr-floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 24px 56px rgba(37, 211, 102, 0.44);
}

.rr-floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 1100px) {
    .rr-contact-cta,
    .rr-contact-grid {
        grid-template-columns: 1fr;
    }

    .rr-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .rr-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .rr-contact-section {
        padding: 58px 0 64px;
    }

    .rr-contact-cta {
        padding: 25px;
        border-radius: 26px;
    }

    .rr-contact-cta h2 {
        font-size: clamp(26px, 8vw, 36px);
        letter-spacing: -1.1px;
    }

    .rr-contact-cta p {
        font-size: 13.5px;
    }

    .rr-contact-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .rr-contact-cta-btn {
        width: 100%;
        min-height: 46px;
    }

    .rr-contact-info-card {
        padding: 24px;
        border-radius: 26px;
    }

    .rr-contact-info-card h3 {
        font-size: 28px;
    }

    .rr-contact-info-card > p {
        font-size: 13.5px;
    }

    .rr-contact-list-item {
        padding: 15px;
        border-radius: 19px;
    }

    .rr-contact-map-card,
    .rr-contact-map-card iframe {
        min-height: 360px;
        border-radius: 26px;
    }

    .rr-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 54px 0 40px;
    }

    .rr-footer-bottom {
        min-height: auto;
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .rr-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .rr-floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* ================================
   FINAL SPACING & FOOTER LOGO FIX
   ================================ */

/* Genel section boşluklarını daha derli toplu hale getir */
.rr-about-section {
    padding: 72px 0 72px;
}

.rr-services-section {
    padding: 70px 0 74px;
}

.rr-stats-section {
    padding: 48px 0 58px;
}

.rr-gallery-section {
    padding: 66px 0 74px;
}

.rr-contact-section {
    padding: 66px 0 72px;
}

/* İç bloklardaki ekstra dikey boşlukları toparla */
.rr-about-features {
    margin-top: 34px;
}

.rr-services-topbar {
    margin-bottom: 22px;
}

.rr-gallery-head {
    margin-bottom: 22px;
}

.rr-gallery-tabs-wrap {
    margin-bottom: 22px;
}

.rr-contact-cta {
    margin-bottom: 24px;
}

/* Sayaç alanını biraz daha kompakt yap */
.rr-stat-item {
    min-height: 160px;
    padding: 26px 20px 24px;
}

.rr-stat-item strong {
    font-size: clamp(46px, 5vw, 70px);
}

.rr-stat-item > span {
    margin-top: 14px;
}

/* Footer logo daha büyük ve daha premium görünsün */
.rr-footer-logo {
    width: 238px;
    min-height: 92px;
    padding: 14px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.rr-footer-logo img {
    width: 200px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}

/* Footer üst boşluğunu da biraz toparla */
.rr-footer-top {
    padding: 58px 0 42px;
}

.rr-footer-brand p {
    margin-top: 16px;
}

/* Mobilde fazla boşluğu engelle */
@media (max-width: 920px) {
    .rr-about-section {
        padding: 54px 0 58px;
    }

    .rr-services-section {
        padding: 54px 0 58px;
    }

    .rr-stats-section {
        padding: 38px 0 44px;
    }

    .rr-gallery-section {
        padding: 52px 0 58px;
    }

    .rr-contact-section {
        padding: 52px 0 58px;
    }

    .rr-footer-logo {
        width: 220px;
        min-height: 84px;
    }

    .rr-footer-logo img {
        width: 186px;
        height: 58px;
    }
}

@media (max-width: 620px) {
    .rr-about-section {
        padding: 46px 0 48px;
    }

    .rr-services-section {
        padding: 46px 0 48px;
    }

    .rr-stats-section {
        padding: 32px 0 38px;
    }

    .rr-gallery-section {
        padding: 44px 0 50px;
    }

    .rr-contact-section {
        padding: 44px 0 50px;
    }

    .rr-stat-item {
        min-height: 138px;
    }

    .rr-footer-top {
        padding: 44px 0 34px;
    }

    .rr-footer-logo {
        width: 210px;
        min-height: 80px;
        padding: 12px 16px;
    }

    .rr-footer-logo img {
        width: 178px;
        height: 56px;
    }
}

/* ================================
   ULTRA COMPACT SECTION SPACING
   Tüm bölüm aralarını sıkılaştırır
   ================================ */

/* Ana section dikey boşlukları */
.rr-about-section {
    padding-top: 46px !important;
    padding-bottom: 44px !important;
}

.rr-services-section {
    padding-top: 46px !important;
    padding-bottom: 42px !important;
}

.rr-stats-section {
    padding-top: 28px !important;
    padding-bottom: 34px !important;
}

.rr-gallery-section {
    padding-top: 42px !important;
    padding-bottom: 44px !important;
}

.rr-contact-section {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
}

/* Hero sonrası about çok aşağıdan başlamasın */
.rr-about-wrapper {
    gap: 46px !important;
}

/* About altındaki 3 özellik kartının boşluğunu azalt */
.rr-about-features {
    margin-top: 24px !important;
}

/* Services başlık/kart arası boşluğu azalt */
.rr-services-topbar {
    margin-bottom: 14px !important;
}

.rr-services-carousel {
    padding-top: 4px !important;
    padding-bottom: 8px !important;
}

/* Services kart yüksekliğini biraz toparla */
.rr-service-card {
    min-height: 350px !important;
}

/* Sayaç section daha kompakt */
.rr-stats-wrapper {
    gap: 14px !important;
}

.rr-stat-item {
    min-height: 132px !important;
    padding: 20px 18px 18px !important;
    border-radius: 24px !important;
}

.rr-stat-item::before {
    top: 16px !important;
    width: 28px !important;
    height: 3px !important;
}

.rr-stat-item strong {
    font-size: clamp(42px, 4.4vw, 62px) !important;
    letter-spacing: -2px !important;
}

.rr-stat-item > span {
    margin-top: 10px !important;
    font-size: 13px !important;
}

/* Galeri başlık, tab ve carousel araları */
.rr-gallery-head {
    margin-bottom: 16px !important;
}

.rr-gallery-title h2 {
    margin-top: 10px !important;
}

.rr-gallery-title p {
    margin-top: 8px !important;
}

.rr-gallery-tabs-wrap {
    margin-bottom: 14px !important;
    padding: 7px !important;
}

.rr-gallery-tabs button {
    min-height: 44px !important;
}

.rr-gallery-carousel {
    padding-top: 4px !important;
    padding-bottom: 8px !important;
}

/* Galeri kartları biraz daha kompakt */
.rr-gallery-card {
    border-radius: 24px !important;
}

.rr-gallery-image {
    height: 245px !important;
}

.rr-gallery-content {
    padding: 14px 16px 16px !important;
}

.rr-gallery-content h3 {
    margin-top: 8px !important;
    font-size: 16px !important;
}

/* Contact üst CTA ile harita arası */
.rr-contact-cta {
    margin-bottom: 18px !important;
    padding: 26px !important;
    border-radius: 28px !important;
}

.rr-contact-cta h2 {
    margin-top: 10px !important;
}

.rr-contact-cta p {
    margin-top: 8px !important;
}

.rr-contact-grid {
    gap: 18px !important;
}

.rr-contact-info-card {
    padding: 26px !important;
    border-radius: 28px !important;
}

.rr-contact-info-card h3 {
    margin-top: 12px !important;
}

.rr-contact-list {
    margin-top: 18px !important;
    gap: 10px !important;
}

.rr-contact-list-item {
    padding: 14px !important;
    border-radius: 18px !important;
}

.rr-contact-map-card,
.rr-contact-map-card iframe {
    min-height: 430px !important;
}

/* Footer boşlukları */
.rr-footer-top {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
}

.rr-footer-bottom {
    min-height: 54px !important;
}

/* Mobil / tablet daha da sıkı */
@media (max-width: 920px) {
    .rr-about-section {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .rr-services-section {
        padding-top: 38px !important;
        padding-bottom: 36px !important;
    }

    .rr-stats-section {
        padding-top: 24px !important;
        padding-bottom: 28px !important;
    }

    .rr-gallery-section {
        padding-top: 36px !important;
        padding-bottom: 38px !important;
    }

    .rr-contact-section {
        padding-top: 36px !important;
        padding-bottom: 40px !important;
    }

    .rr-about-wrapper {
        gap: 28px !important;
    }

    .rr-about-features {
        margin-top: 20px !important;
    }

    .rr-service-card {
        min-height: 320px !important;
    }

    .rr-gallery-image {
        height: 220px !important;
    }

    .rr-contact-map-card,
    .rr-contact-map-card iframe {
        min-height: 340px !important;
    }

    .rr-footer-top {
        padding-top: 36px !important;
        padding-bottom: 28px !important;
    }
}

@media (max-width: 620px) {
    .rr-about-section {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .rr-services-section {
        padding-top: 32px !important;
        padding-bottom: 30px !important;
    }

    .rr-stats-section {
        padding-top: 20px !important;
        padding-bottom: 24px !important;
    }

    .rr-gallery-section {
        padding-top: 30px !important;
        padding-bottom: 32px !important;
    }

    .rr-contact-section {
        padding-top: 30px !important;
        padding-bottom: 34px !important;
    }

    .rr-services-topbar {
        margin-bottom: 12px !important;
    }

    .rr-stats-wrapper {
        gap: 10px !important;
    }

    .rr-stat-item {
        min-height: 118px !important;
        padding: 18px 16px 16px !important;
    }

    .rr-stat-item strong {
        font-size: clamp(38px, 13vw, 56px) !important;
    }

    .rr-gallery-head {
        margin-bottom: 14px !important;
    }

    .rr-gallery-tabs-wrap {
        margin-bottom: 12px !important;
    }

    .rr-gallery-card {
        flex-basis: 82% !important;
    }

    .rr-gallery-image {
        height: 220px !important;
    }

    .rr-contact-cta {
        padding: 22px !important;
        margin-bottom: 14px !important;
    }

    .rr-contact-info-card {
        padding: 22px !important;
    }

    .rr-footer-top {
        padding-top: 32px !important;
        padding-bottom: 24px !important;
    }
}

/* Hizmet dropdown detay bağlantıları */
.rr-dropdown-all-link {
    border-top: 1px solid var(--rr-line);
    background: var(--rr-soft);
}

.rr-dropdown-all-link > span {
    color: var(--rr-cyan-dark);
    font-weight: 800;
}

.rr-mobile-all-services {
    margin-top: 6px;
    border-top: 1px solid var(--rr-line);
    color: var(--rr-cyan-dark) !important;
    font-weight: 800 !important;
}
