:root {
    --rw-primary: #00ADEF;
    --rw-primary-dark: #0088BF;
    --rw-primary-deeper: #006A94;
    --rw-primary-light: #E6F7FD;
    --rw-primary-lighter: #F0FAFF;
    --rw-accent: #004B6E;
    --rw-dark: #0A1628;
    --rw-text: #2C3E50;
    --rw-text-light: #6B7B8D;
    --rw-white: #FFFFFF;
    --rw-off-white: #F8FBFD;
    --rw-border: #D6EAF4;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif
}

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

html {
    scroll-behavior: smooth width: 100%;
    overflow-x: clip;
}

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

.hero-slide-bg {
    background-image: url("img/slider/group1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--rw-accent)
}

p {
    line-height: 1.8;
    color: var(--rw-text-light);
    font-weight: 300
}

a {
    text-decoration: none;
    transition: all .3s ease
}

/* TOP BAR */
.top-bar {
    background: var(--rw-primary);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .3px
}

.top-bar a {
    color: rgba(255, 255, 255, .9)
}

.top-bar a:hover {
    color: var(--rw-white)
}

.top-bar .separator {
    margin: 0 12px;
    opacity: .4
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    padding: 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all .4s ease
}

.navbar.scrolled {
    background: var(--rw-white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1)
}

.navbar.hero-mode {
    background: transparent;
    backdrop-filter: none
}

.navbar.hero-mode .nav-link {
    color: rgba(255, 255, 255, .85) !important
}

.navbar.hero-mode .nav-link:hover,
.navbar.hero-mode .nav-link.active {
    color: var(--rw-white) !important
}

.navbar.hero-mode .brand-name {
    color: var(--rw-white)
}

.navbar.hero-mode .brand-sub {
    color: rgba(255, 255, 255, .6)
}

.navbar.hero-mode .hamburger span {
    background: white
}

.navbar-brand {
    padding: 12px 0
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--rw-accent);
    letter-spacing: .5px;
    transition: color .3s
}

.navbar-brand .brand-sub {
    font-size: 9px;
    color: var(--rw-text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color .3s
}

.navbar-brand .brand-logo {
    width: 80px;
    height: 50px;
    background: #00ADEF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}


.navbar .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--rw-text) !important;
    padding: 28px 16px !important;
    letter-spacing: .3px;
    text-transform: uppercase;
    position: relative;
    transition: color .3s ease
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--rw-primary);
    transform: scaleX(0);
    transition: transform .3s ease;
    border-radius: 3px 3px 0 0
}

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

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--rw-primary) !important
}

.navbar.hero-mode .nav-link:hover::after,
.navbar.hero-mode .nav-link.active::after {
    background: white
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    padding: 10px;
    margin-top: 0;
    border-top: 3px solid var(--rw-primary)
}

.navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--rw-text);
    transition: all .2s ease
}

.navbar .dropdown-item:hover {
    background: var(--rw-primary-light);
    color: var(--rw-primary)
}

/* MOBILE MENU */
.navbar-toggler {
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1060;
    outline: none !important;
    box-shadow: none !important
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--rw-accent);
    border-radius: 2px;
    transition: all .4s cubic-bezier(.68, -.55, .265, 1.55);
    transform-origin: center
}

.navbar-toggler.active .hamburger span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
    background: var(--rw-white)
}

.navbar-toggler.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.navbar-toggler.active .hamburger span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
    background: var(--rw-white)
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, .6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--rw-primary);
    z-index: 1055;
    transform: translateX(-100%);
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column
}

.mobile-menu.active {
    transform: translateX(0)
}

.mobile-menu-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.mobile-menu-header .brand-logo-m {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    margin-right: 12px
}

.mobile-menu-header .brand-info h5 {
    color: white;
    font-size: 18px;
    margin: 0
}

.mobile-menu-header .brand-info span {
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.mobile-menu-nav {
    padding: 16px 0;
    flex: 1
}

.mobile-menu-nav .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
    border-left: 3px solid transparent
}

.mobile-menu-nav .mobile-nav-link:hover,
.mobile-menu-nav .mobile-nav-link.active {
    background: rgba(255, 255, 255, .1);
    border-left-color: white;
    padding-left: 28px
}

.mobile-menu-nav .mobile-nav-link i {
    font-size: 12px;
    opacity: .5
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, .15);
    transition: max-height .4s ease
}

.mobile-submenu.open {
    max-height: 300px
}

.mobile-submenu a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    transition: all .3s ease
}

.mobile-submenu a:hover {
    color: white;
    padding-left: 48px
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.mobile-menu-footer p {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    margin: 0
}

.mobile-menu-footer .social-icons a {
    color: rgba(255, 255, 255, .6);
    margin-right: 16px;
    font-size: 18px
}

.mobile-menu-footer .social-icons a:hover {
    color: white
}

/* Mobile menu close button */
.mobile-menu-close {
    margin-left: auto;
    width: 38px;
    height: 38px;
    border: 0;
    background: rgba(5, 4, 66, 0.5);
    color: var(--rw-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, .28)
}

.mobile-menu-close:active {
    transform: scale(.96)
}

.mobile-menu-close.spinning {
    animation: rwSpin .45s linear
}

@keyframes rwSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Optional: a smoother closing state */
.mobile-menu.closing {
    transform: translateX(-100%)
}

/* ===== FULLSCREEN HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden
}

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

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08)
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(0, 75, 110, .7) 40%, rgba(0, 173, 239, .4) 100%);
    z-index: 1
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 173, 239, .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 173, 239, .3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--rw-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s ease .3s
}

.hero-slide.active .hero-label {
    opacity: 1;
    transform: translateY(0)
}

.hero-title {
    font-size: 68px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease .5s
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0)
}

.hero-title span {
    color: var(--rw-primary)
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    max-width: 550px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease .7s
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0)
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease .9s
}

.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0)
}

.btn-hero {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-hero-primary {
    background: var(--rw-primary);
    color: white;
    border: 2px solid var(--rw-primary)
}

.btn-hero-primary:hover {
    background: white;
    color: var(--rw-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 173, 239, .3)
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .4)
}

.btn-hero-outline:hover {
    background: white;
    color: var(--rw-accent);
    border-color: white;
    transform: translateY(-3px)
}

/* Slider controls */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .4s ease
}

.hero-dot.active {
    background: var(--rw-primary);
    border-color: white;
    width: 36px;
    border-radius: 6px
}

.hero-arrows {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 8px
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease
}

.hero-arrow:hover {
    background: var(--rw-primary);
    border-color: var(--rw-primary);
    transform: scale(1.05)
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rw-primary);
    animation: scrollDown 2s ease infinite
}

@keyframes scrollDown {
    0% {
        top: -100%
    }

    50% {
        top: 0
    }

    100% {
        top: 100%
    }
}

/* Hero stats floating */
.hero-stats {
    position: absolute;
    bottom: 120px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 30px
}

.hero-stat {
    text-align: center
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 42px;
    color: white;
    line-height: 1
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 4px
}

/* ===== SHARED ===== */
.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rw-primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--rw-primary);
    border-radius: 1px
}

.section-title {
    font-size: 42px;
    color: var(--rw-accent);
    margin-bottom: 20px;
    line-height: 1.2
}

/* ===== ANNOUNCEMENT SECTION ===== */
.announcement-section {
    padding: 80px 0;
    background: var(--rw-off-white);
    position: relative;
    overflow: hidden
}

.announcement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    height: 4px;
    background: linear-gradient(90deg, var(--rw-primary), var(--rw-primary-dark), var(--rw-accent))
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease infinite
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 173, 239, .4)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 173, 239, 0)
    }
}

.announcement-card {
    background: var(--rw-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rw-border);
    transition: all .4s ease;
    height: 100%
}

.announcement-card:hover {
    border-color: var(--rw-primary);
    box-shadow: 0 20px 50px rgba(0, 173, 239, .12);
    transform: translateY(-6px)
}

.announcement-img {
    height: 200px;
    background: linear-gradient(135deg, var(--rw-primary-light), var(--rw-primary-lighter));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.announcement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.announcement-img .img-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.announcement-img .img-placeholder i {
    font-size: 36px;
    color: white
}

.announcement-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rw-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.announcement-body {
    padding: 24px
}

.announcement-body .ann-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--rw-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px
}

.announcement-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color .3s
}

.announcement-card:hover .announcement-body h4 {
    color: var(--rw-primary)
}

.announcement-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.announcement-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--rw-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s
}

.announcement-link:hover {
    gap: 10px;
    color: var(--rw-primary-dark)
}

.announcement-empty {
    text-align: center;
    padding: 60px 20px
}

.announcement-empty i {
    font-size: 48px;
    color: var(--rw-border);
    margin-bottom: 16px
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
    position: relative
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--rw-primary-lighter);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0
}

.about-img-stack {
    position: relative;
    z-index: 1
}

.about-img-main {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--rw-primary-dark), var(--rw-accent));
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 20px 20px
}

.about-img-main .img-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2
}

.about-img-main .img-text h3 {
	color: white;
	font-size: 32px;
	margin-bottom: 4px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.about-img-main .img-text span {
    color: rgb(0, 173, 239);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.about-float-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--rw-primary);
    border-radius: 16px;
    padding: 28px;
    color: white;
    width: 220px;
    box-shadow: 0 20px 50px rgba(0, 173, 239, .3);
    z-index: 3
}

.about-float-card .float-num {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1
}

.about-float-card .float-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: .8
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 100px 0;
    background: var(--rw-off-white)
}

.sp-card {
    background: var(--rw-white);
    border: 1px solid var(--rw-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    height: 100%
}

.sp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
    opacity: 0;
    transition: opacity .4s ease;
    border-radius: 16px;
    z-index: 0
}

.sp-card:hover::after {
    opacity: 1
}

.sp-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 173, 239, .25)
}

.sp-card>* {
    position: relative;
    z-index: 1
}

.sp-card .sp-icon {
    width: 68px;
    height: 68px;
    background: var(--rw-primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .4s
}

.sp-card .sp-icon i {
    font-size: 28px;
    color: var(--rw-primary);
    transition: color .4s
}

.sp-card:hover .sp-icon {
    background: rgba(255, 255, 255, .2)
}

.sp-card:hover .sp-icon i {
    color: white
}

.sp-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: color .4s
}

.sp-card:hover h5 {
    color: white
}

.sp-card p {
    font-size: 13px;
    line-height: 1.6;
    transition: color .4s
}

.sp-card:hover p {
    color: rgba(255, 255, 255, .8)
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--rw-dark) 0%, var(--rw-accent) 50%, var(--rw-primary-deeper) 100%);
    position: relative;
    overflow: hidden
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 30px 30px
}

.why-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all .4s;
    height: 100%
}

.why-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(0, 173, 239, .3);
    transform: translateY(-6px)
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--rw-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.why-icon i {
    font-size: 24px;
    color: white
}

.why-card h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px
}

.why-card p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px
}

/* ===== CLIENT MARQUEE ===== */
.client-marquee {
    padding: 50px 0;
    background: var(--rw-white);
    border-top: 1px solid var(--rw-border);
    border-bottom: 1px solid var(--rw-border);
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 100s linear infinite;
    width: max-content
}

.marquee-track:hover {
    animation-play-state: paused
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0
}

.marquee-item .mq-mono {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rw-primary), var(--rw-primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 14px;
    color: white;
    flex-shrink: 0
}

.marquee-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--rw-text-light)
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

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

/* ===== OFFICES MAP ===== */
.offices-section {
    padding: 80px 0
}

.office-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rw-white);
    border: 2px solid var(--rw-border);
    border-radius: 14px;
    padding: 16px 24px;
    transition: all .3s;
    margin: 5px
}

.office-pill:hover {
    border-color: var(--rw-primary);
    background: var(--rw-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 173, 239, .2)
}

.office-pill:hover * {
    color: white !important
}

.office-pill .op-icon {
    width: 40px;
    height: 40px;
    background: var(--rw-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.office-pill:hover .op-icon {
    background: rgba(255, 255, 255, .2)
}

.office-pill .op-icon i {
    color: var(--rw-primary);
    font-size: 18px;
    transition: color .3s
}

.office-pill .op-info h6 {
    font-size: 14px;
    margin: 0;
    color: var(--rw-accent);
    font-family: var(--font-body);
    font-weight: 600;
    transition: color .3s
}

.office-pill .op-info span {
    font-size: 11px;
    color: var(--rw-text-light);
    transition: color .3s
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--rw-primary) 0%, var(--rw-primary-dark) 50%, var(--rw-accent) 100%);
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
    border-radius: 50%
}

.cta-section h2 {
    color: var(--rw-white);
    font-size: 38px
}

.cta-section p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px
}

.btn-rw-white {
    background: white;
    color: var(--rw-primary);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all .3s;
    display: inline-block
}

.btn-rw-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.btn-rw-outline {
    background: transparent;
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: all .3s;
    display: inline-block
}

.btn-rw-outline:hover {
    background: white;
    color: var(--rw-accent);
    border-color: white;
    transform: translateY(-2px)
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--rw-dark);
    padding: 80px 0 0
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--rw-white)
}

.footer-brand p {
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px
}

.footer-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--rw-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px
}

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

.footer-links a {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    transition: all .3s
}

.footer-links a:hover {
    color: var(--rw-primary);
    padding-left: 6px
}

.footer-contact li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .45);
    font-size: 14px
}

.footer-contact i {
    color: var(--rw-primary);
    margin-top: 3px
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, .3);
    font-size: 13px;
    margin: 0
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    margin-left: 8px;
    transition: all .3s
}

.footer-social a:hover {
    background: var(--rw-primary);
    color: white;
    transform: translateY(-3px)
}

/* SOCIAL SIDEBAR */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1030;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.social-sidebar-toggle {
    width: 48px;
    height: 48px;
    background: var(--rw-primary);
    border: none;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 4px 4px 15px rgba(0, 173, 239, .3);
    position: relative;
    z-index: 2
}

.social-sidebar-toggle:hover {
    background: var(--rw-primary-dark);
    width: 52px
}

.social-sidebar-toggle .toggle-icon {
    transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55)
}

.social-sidebar.open .social-sidebar-toggle .toggle-icon {
    transform: rotate(180deg)
}

.social-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
    transform: translateX(100%);
    opacity: 0;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
    pointer-events: none
}

.social-sidebar.open .social-sidebar-links {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto
}

.social-sidebar-links a {
    width: 48px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    transform: translateX(-60px)
}

.social-sidebar-links a:hover {
    width: 56px
}

.social-sidebar.open .social-sidebar-links a {
    transform: translateX(0)
}

.social-sidebar-links a .social-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rw-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    margin-left: 10px
}

.social-sidebar-links a .social-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--rw-dark)
}

.social-sidebar-links a:hover .social-tooltip {
    opacity: 1;
    margin-left: 14px
}

.social-sidebar-links .social-facebook {
    background: #1877F2
}

.social-sidebar-links .social-tiktok {
    background: #010101
}

.social-sidebar-links .social-viber {
    background: #7360F2
}

.social-sidebar-links .social-whatsapp {
    background: #25D366
}

.social-sidebar-links .social-linkedin {
    background: #0A66C2
}

.social-sidebar-links .social-email {
    background: #6B7B8D
}

.social-sidebar-links .social-twitter {
    background: #1DA1F2
}

.social-sidebar-links .social-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.social-sidebar-links .social-youtube {
    background: #FF0000
}

.social-sidebar-links a:hover {
    filter: brightness(1.15)
}

.social-sidebar.open .social-sidebar-links a:nth-child(1) {
    transition-delay: .03s
}

.social-sidebar.open .social-sidebar-links a:nth-child(2) {
    transition-delay: .06s
}

.social-sidebar.open .social-sidebar-links a:nth-child(3) {
    transition-delay: .09s
}

.social-sidebar.open .social-sidebar-links a:nth-child(4) {
    transition-delay: .12s
}

.social-sidebar.open .social-sidebar-links a:nth-child(5) {
    transition-delay: .15s
}

.social-sidebar.open .social-sidebar-links a:nth-child(6) {
    transition-delay: .18s
}

.social-sidebar.open .social-sidebar-links a:nth-child(7) {
    transition-delay: .21s
}

.social-sidebar.open .social-sidebar-links a:nth-child(8) {
    transition-delay: .24s
}

.social-sidebar.open .social-sidebar-links a:nth-child(9) {
    transition-delay: .27s
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 173, 239, .4)
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 173, 239, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 173, 239, 0)
    }
}

.social-sidebar-toggle {
    animation: pulse-ring 2.5s infinite
}

.social-sidebar.open .social-sidebar-toggle {
    animation: none
}

@media(max-width:767.98px) {
    .social-sidebar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: column;
        align-items: stretch
    }

    .social-sidebar-toggle {
        width: 100%;
        height: 44px;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -4px 15px rgba(0, 173, 239, .2);
        flex-direction: row;
        gap: 8px;
        font-size: 14px
    }

    .social-sidebar-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        background: var(--rw-dark);
        padding: 12px 8px;
        transform: translateY(100%)
    }

    .social-sidebar.open .social-sidebar-links {
        transform: translateY(0)
    }

    .social-sidebar-links a {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin: 3px;
        transform: translateY(30px)
    }

    .social-sidebar.open .social-sidebar-links a {
        transform: translateY(0)
    }

    .social-sidebar-links a .social-tooltip {
        display: none
    }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--rw-primary);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 173, 239, .35)
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    background: var(--rw-primary-dark)
}

/* ===== RESPONSIVE ===== */
@media(max-width:991.98px) {
    .desktop-nav {
        display: none !important
    }

    .section-title {
        font-size: 32px
    }

    .hero-title {
        font-size: 42px
    }

    .hero-stats {
        display: none
    }

    .hero-scroll {
        display: none
    }

    .about-preview::before {
        display: none
    }

    .about-float-card {
        right: 10px;
        bottom: -20px;
        width: 180px;
        padding: 20px
    }

    .about-float-card .float-num {
        font-size: 38px
    }
}

@media(min-width:1200px) {

    .navbar-toggler,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important
    }
}

@media(max-width:575.98px) {
    .hero-title {
        font-size: 32px
    }

    .hero-desc {
        font-size: 15px
    }

    .section-title {
        font-size: 26px
    }

    .top-bar {
        display: none
    }

    .hero-arrows {
        bottom: 30px;
        right: 3%
    }

    .hero-dots {
        bottom: 30px
    }

    .about-img-main {
        height: 260px
    }

}