:root {
    --primary: #00213f;
    --secondary: #0090d4;
    --accent: #00b4f2;
    --light: #f8fcff;
    --lighter: #e8f0fc;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: rgba(0, 33, 63, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rka-scope {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--gray);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.rka-scope h1,
.rka-scope h2,
.rka-scope h3,
.rka-scope h4 {
    font-family: "Lora", serif;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(0, 33, 63, 0.8),
        rgba(0, 144, 212, 0.7)
    );
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(0, 180, 242, 0.15) 0%,
        transparent 60%
    );
    animation: wave 10s infinite ease-in-out;
}

@keyframes wave {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 2.5rem;
    color: var(--white);
    background: rgba(0, 33, 63, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 33, 63, 0.2);
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary-filled,
.btn-primary-outline,
.btn-cta-filled,
.btn-cta-outline,
.btn-office,
.btn-all {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    margin: 0.5rem;
}

.btn-primary-filled,
.btn-cta-filled,
.btn-office,
.btn-all {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 144, 212, 0.3);
}

.btn-primary-filled:hover,
.btn-cta-filled:hover,
.btn-office:hover,
.btn-all:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 144, 212, 0.3);
}

.btn-primary-outline,
.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 144, 212, 0.2);
}

.btn-primary-outline:hover,
.btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 33, 63, 0.2);
}

.btn-primary-filled i,
.btn-primary-outline i,
.btn-cta-filled i,
.btn-cta-outline i,
.btn-office i,
.btn-all i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-primary-filled:hover i,
.btn-primary-outline:hover i,
.btn-cta-filled:hover i,
.btn-cta-outline:hover i,
.btn-office:hover i,
.btn-all:hover i {
    transform: translateX(4px);
}

/* Locations Section */
.locations-section,
.access-section,
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.locations-section h2,
.access-section h2,
.services-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.locations-section .lead,
.access-section .lead,
.services-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 400;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.office-card {
    background: linear-gradient(145deg, var(--white), var(--lighter));
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    min-height: 580px;
    flex: 1 1 360px;
    max-width: 420px;
}

.office-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 33, 63, 0.3);
}

.office-card .office-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 16 / 9;
}

.office-card .content {
    padding: 2rem;
}

.office-card .office-badge {
    display: inline-block;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    color: var(--white);
    background: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.office-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.office-card p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.office-card .details {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.office-card .details i {
    margin-right: 0.6rem;
    color: var(--secondary);
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

/* Access Section */
.access-section .card {
    background: linear-gradient(145deg, var(--white), var(--lighter));
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    padding: 2rem;
    transition: var(--transition);
    transform: scale(0.9) !important;
    flex: 1 1 360px;
    max-width: 420px;
}

.access-section .card:hover {
    transform: scale(1) !important;
    box-shadow: 0 15px 35px rgba(0, 33, 63, 0.25);
}

.access-section .card h3 {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    margin-bottom: 1rem;
}

.access-section .card p,
.access-section .card ul {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--gray);
    font-weight: 400;
}

.access-section .card ul {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.access-section .card ul li {
    margin-bottom: 0.4rem;
}

/* Services Section */
.services-section .service-card {
    background: linear-gradient(145deg, var(--white), var(--lighter));
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    flex: 1 1 360px;
    max-width: 420px;
}

.services-section .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 33, 63, 0.3);
}

.services-section .service-card i {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--secondary);
    background: var(--lighter);
    border-radius: 50%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.services-section .service-card:hover i {
    transform: scale(1.1);
    color: var(--accent);
}

.services-section .service-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    margin-bottom: 0.8rem;
}

.services-section .service-card p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--gray);
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section p {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    opacity: 0.9;
}

.cta-section .d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1320px;
    }
    .locations-section,
    .services-section {
        padding-right: 6rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    .hero-content {
        margin: 0 auto;
        padding: 1.5rem;
        width: 90%;
        position: relative;
        top: 0;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    .hero-content p {
        font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-cta-filled,
    .btn-cta-outline,
    .btn-office,
    .btn-all {
        padding: 0.7rem 1.8rem;
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        min-width: 180px;
    }
    .locations-section,
    .access-section,
    .services-section,
    .cta-section {
        padding: 4rem 0;
    }
    .locations-section h2,
    .access-section h2,
    .services-section h2,
    .cta-section h2 {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    }
    .locations-section .lead,
    .access-section .lead,
    .services-section .lead,
    .cta-section p {
        font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    }
    .office-card {
        max-width: 360px;
        min-height: 520px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .office-card .office-image {
        height: 180px;
        aspect-ratio: 16 / 9;
    }
    .office-card .content {
        padding: 1.5rem;
    }
    .office-card h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    }
    .office-card p,
    .office-card .details {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .office-card .office-badge {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: 0.3rem 0.8rem;
    }
    .access-section .card {
        padding: 1.5rem;
        max-width: 360px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .access-section .card h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.4rem);
    }
    .access-section .card p,
    .access-section .card ul {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .services-section .service-card {
        padding: 1.5rem;
        max-width: 360px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .services-section .service-card h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.4rem);
    }
    .services-section .service-card i {
        font-size: clamp(1.8rem, 4vw, 2rem);
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }
    .hero-content {
        margin: 0 auto;
        padding: 1.5rem;
        width: 90%;
        position: relative;
        top: 0;
    }
    .hero-content h1 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-cta-filled,
    .btn-cta-outline,
    .btn-office,
    .btn-all {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        min-width: 160px;
        width: 100%;
    }
    .locations-section,
    .access-section,
    .services-section,
    .cta-section {
        padding: 3.5rem 0;
    }
    .locations-section h2,
    .access-section h2,
    .services-section h2,
    .cta-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 2rem);
    }
    .locations-section .lead,
    .access-section .lead,
    .services-section .lead,
    .cta-section p {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    }
    .office-card {
        max-width: 340px;
        min-height: 480px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .office-card .office-image {
        height: 160px;
        aspect-ratio: 16 / 9;
    }
    .office-card .content {
        padding: 1.2rem;
    }
    .office-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
    .office-card p,
    .office-card .details {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }
    .office-card .office-badge {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
        padding: 0.25rem 0.6rem;
    }
    .access-section .card {
        padding: 1.2rem;
        max-width: 340px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .access-section .card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    }
    .access-section .card p,
    .access-section .card ul {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }
    .services-section .service-card {
        padding: 1.2rem;
        max-width: 340px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .services-section .service-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    }
    .services-section .service-card i {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .cta-section .d-flex {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .cta-section .btn-cta-filled,
    .cta-section .btn-cta-outline {
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
        position: relative;
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1rem;
        width: 95%;
        max-width: none;
    }
    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
    .hero-content p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-cta-filled,
    .btn-cta-outline,
    .btn-office,
    .btn-all {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        min-width: 140px;
        width: 100%;
        max-width: 200px;
    }
    .locations-section,
    .access-section,
    .services-section,
    .cta-section {
        padding: 3rem 0;
    }
    .locations-section h2,
    .access-section h2,
    .services-section h2,
    .cta-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 1.8rem);
    }
    .locations-section .lead,
    .access-section .lead,
    .services-section .lead,
    .cta-section p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    }
    .office-card {
        max-width: 320px;
        min-height: 440px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .office-card .office-image {
        height: 140px;
        aspect-ratio: 16 / 9;
    }
    .office-card .content {
        padding: 1rem;
    }
    .office-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    }
    .office-card p,
    .office-card .details {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }
    .office-card .office-badge {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
        padding: 0.25rem 0.6rem;
    }
    .access-section .card {
        padding: 1rem;
        max-width: 320px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .access-section .card h3 {
        font-size: clamp(1.1rem, 2.2vw, 1.2rem);
    }
    .access-section .card p,
    .access-section .card ul {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }
    .services-section .service-card {
        padding: 1rem;
        max-width: 320px;
        margin: 0 auto;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .services-section .service-card h3 {
        font-size: clamp(1.1rem, 2.2vw, 1.2rem);
    }
    .services-section .service-card i {
        font-size: clamp(1.5rem, 3.2vw, 1.6rem);
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .section-container {
        padding: 0 12px;
    }
    .cta-section .d-flex {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .cta-section .btn-cta-filled,
    .cta-section .btn-cta-outline {
        margin: 0 auto;
        width: fit-content;
    }
}
